Codeforces Round #671 (Div. 2) D2. Sage‘s Birthday (hard version)

D2. Sage’s Birthday (hard version)
Description

This is the hard version of the problem. The difference between the versions is that in the easy version all prices ai 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 n ice spheres are placed in a row and they are numbered from 1 to n 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 (1≤n≤105) — the number of ice spheres in the shop.

The second line contains n integers a1,a2,…,an (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
7
1 3 2 2 4 5 4
output
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 4 of them. If the spheres are placed in the order (3,1,4,2,4,2,5), then Sage will buy one sphere for 1 and two spheres for 2 each.

题意: 将数字大小间隔排列,求中间的数小于两边的数这样最多能有多少个。

c++ AC 代码

#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const int MAX_N = 2e5 + 10;
ll a[MAX_N], b[MAX_N];
int n;

int main()
{
	scanf("%d", &n);
	for (int i = 1; i <= n; i++)
		scanf("%lld", &a[i]);
	sort(a + 1, a + 1 + n);
	int p = 2;
	for (int i = 1; i <= n / 2; i++)
	{
		b[p] = a[i];
		p += 2;
	}
	p = 1;
	for (int i = n / 2 + 1; i <= n; i++)
	{
		b[p] = a[i];
		p += 2;
	}
	int sum = 0;
	for (int i = 2; i < n; i++)
		if (b[i - 1] > b[i] && b[i] < b[i + 1])
			sum++;
	printf("%d\n", sum);
	for (int i = 1; i <= n; i++)
		printf("%d ", b[i]);
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值