cf 1419D2

D2. Sage's Birthday (hard version)
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

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 11to 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 n(1n105)(1≤n≤105) — the number of ice spheres in the shop.

The second line contains nn integers a1,a2,,ana1,a2,…,an (1ai109)(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.

 

题目大意:给一串数,要让a[i]<a[i-1]&&a[i]<a[i+1],求满足这个条件的i最多的排列。

思路:想着把前一半的数往后一半插入就行了,然后就过了,但是总觉得能相等之后有哪里怪怪的,等发现了再来补充

 

代码:

 1 #include<cstdio>
 2 #include<iostream>
 3 #include<algorithm>
 4 #include<cstring>
 5 using namespace std;
 6 int n,a[100005],ans[100005],flag[100005];
 7 int main(){
 8     scanf("%d",&n);
 9     for (int i=1; i<=n; i++){
10         scanf("%d",&a[i]);
11     }
12     int res=0;
13     sort(a+1,a+1+n);
14     for (int i=1; i<=n; i++){
15         if (i%2) ans[i]=a[n/2+i/2+1];
16         else ans[i]=a[i/2];
17     }
18     for (int i=2; i<n; i++){
19         if (ans[i]<ans[i-1] && ans[i]<ans[i+1]) res++;
20     }
21     printf("%d\n",res);
22     for (int i=1; i<=n; i++)
23         printf("%d ",ans[i]);
24     return 0;
25 }
View Code

 

posted @ 2020-10-05 18:44  我是菜狗QAQ  阅读(126)  评论(0编辑  收藏  举报