当前位置: 代码迷 >> 综合 >> D2. Sage‘s Birthday (hard version)
  详细解决方案

D2. Sage‘s Birthday (hard version)

热度:51   发布时间:2024-02-24 11:02:13.0

链接:https://codeforces.com/problemset/problem/1419/D2

This is the hard version of the problem. The difference between the versions is that in the easy version all prices aiai are different. You can make hacks if and only if you solved both versions of the problem.

Today is Sage's birthday, and she will go shopping to buy ice spheres. All nn ice spheres are placed in a row and they are numbered from 11 to nn from left to right. Each ice sphere has a positive integer price. In this version, some prices can be equal.

An ice sphere is cheap if it costs strictly less than two neighboring ice spheres: the nearest to the left and the nearest to the right. The leftmost and the rightmost ice spheres are not cheap. Sage will choose all cheap ice spheres and then buy only them.

You can visit the shop before Sage and reorder the ice spheres as you wish. Find out the maximum number of ice spheres that Sage can buy, and show how the ice spheres should be reordered.

Input

The first line contains a single integer nn (1≤n≤105)(1≤n≤105) — the number of ice spheres in the shop.

The second line contains nn integers a1,a2,…,ana1,a2,…,an (1≤ai≤109)(1≤ai≤109) — the prices of ice spheres.

Output

In the first line print the maximum number of ice spheres that Sage can buy.

In the second line print the prices of ice spheres in the optimal order. If there are several correct answers, you can print any of them.

Example

input

Copy

7
1 3 2 2 4 5 4

output

Copy

3
3 1 4 2 4 2 5 

Note

In the sample it's not possible to place the ice spheres in any order so that Sage would buy 44 of them. If the spheres are placed in the order (3,1,4,2,4,2,5)(3,1,4,2,4,2,5), then Sage will buy one sphere for 11 and two spheres for 22 each.

代码:

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int maxn=4e5+7;
const int mod=1e9+7;
char x;
ll n,t,s;
ll a[maxn],b[maxn];
int main()
{cin>>n;for(int i=1;i<=n;i++){cin>>a[i];}sort(a+1,a+1+n);int l=1,r=n/2+1;for(int i=1;i<=n;i++){if(i%2==0){b[i]=a[l];l++;}else{b[i]=a[r];r++;}}s=0;for(int i=2;i<n;i++){if(b[i]<b[i+1]&&b[i]<b[i-1])s++;}cout<<s<<endl;for(int i=1;i<=n;i++)cout<<b[i]<<" ";return 0;
}

 

  相关解决方案