Anya and Kirill are doing a physics laboratory work. In one of the tasks they have to measure some value n times, and then compute the average value to lower the error.
Kirill has already made his measurements, and has got the following integer values: x1, x2, ..., xn. It is important that the values are close to each other, namely, the difference between the maximum value and the minimum value is at most 2.
Anya does not want to make the measurements, however, she can't just copy the values from Kirill's work, because the error of each measurement is a random value, and this coincidence will be noted by the teacher. Anya wants to write such integer values y1, y2, ..., yn in her work, that the following conditions are met:
- the average value of x1, x2, ..., xn is equal to the average value of y1, y2, ..., yn;
- all Anya's measurements are in the same bounds as all Kirill's measurements, that is, the maximum value among Anya's values is not greater than the maximum value among Kirill's values, and the minimum value among Anya's values is not less than the minimum value among Kirill's values;
- the number of equal measurements in Anya's work and Kirill's work is as small as possible among options with the previous conditions met. Formally, the teacher goes through all Anya's values one by one, if there is equal value in Kirill's work and it is not strike off yet, he strikes off this Anya's value and one of equal values in Kirill's work. The number of equal measurements is then the total number of strike off values in Anya's work.
Help Anya to write such a set of measurements that the conditions above are met.
The first line contains a single integer n (1 ≤ n ≤ 100 000) — the numeber of measurements made by Kirill.
The second line contains a sequence of integers x1, x2, ..., xn ( - 100 000 ≤ xi ≤ 100 000) — the measurements made by Kirill. It is guaranteed that the difference between the maximum and minimum values among values x1, x2, ..., xn does not exceed 2.
In the first line print the minimum possible number of equal measurements.
In the second line print n integers y1, y2, ..., yn — the values Anya should write. You can print the integers in arbitrary order. Keep in mind that the minimum value among Anya's values should be not less that the minimum among Kirill's values, and the maximum among Anya's values should be not greater than the maximum among Kirill's values.
If there are multiple answers, print any of them.
6 -1 1 1 0 0 -1
2 0 0 0 0 0 0
3 100 100 101
3 101 100 100
7 -10 -9 -10 -8 -10 -9 -9
5 -10 -10 -9 -9 -9 -9 -9
In the first example Anya can write zeros as here measurements results. The average value is then equal to the average value of Kirill's values, and there are only two equal measurements.
In the second example Anya should write two values 100 and one value 101 (in any order), because it is the only possibility to make the average be the equal to the average of Kirill's values. Thus, all three measurements are equal.
In the third example the number of equal measurements is 5.
题意:给定有n个数的数列A,问是否存在一个有n个数的数列B满足下列要求
1.A平均数=B平均数
2.B的最大值不超过A的最大值,B的最小值不小于A的最小值
3.使得不相同的数字尽可能多
思路:首先cnt[0]一定大于0.
如果存在cnt[2],那么我们求得c2=min(cnt[0],cnt[2]),比较c2和(cnt[1]/2*2)的大小
如果前者大,说明我可以通过原数列A产生更多的1; 否则是产生更多的0和2
如果不存在cnt[2],那么就是原序列
#include <bits/stdc++.h>
#define MOD 10000
#define INF 0x3f3f3f3f
#define bug cout << "bug" << endl
#pragma comment(linker, "/STACK:102400000,102400000")
using namespace std;
typedef long long ll;
const int MAX_N=1e5+5;
int n,m;
int cnt[6];
int a[MAX_N];
int main(void){
cin >> n;
int mn=INF;
for(int i=1;i<=n;i++){
int x;scanf("%d",&x);
a[i]=x;
mn=min(mn,x);
}
for(int i=1;i<=n;i++){
a[i]-=mn;
cnt[a[i]]++;
}
if(!cnt[2]){
cout << n << endl;
for(int i=1;i<=n;i++) printf("%d %c",a[i]+mn," \n"[i==n]);
return 0;
}
int c1=min(cnt[0],cnt[2]);
int c2=cnt[1]/2*2;
if(c1*2>=c2){
printf("%d\n",n-c1-c1);
cnt[0]-=c1,cnt[2]-=c1,cnt[1]+=c1*2;
}
else{
printf("%d\n",n-c2);
cnt[0]+=c2/2,cnt[2]+=c2/2,cnt[1]-=c2;
}
for(int i=1;i<=cnt[0];i++) printf("%d ",0+mn);
for(int i=1;i<=cnt[1];i++) printf("%d ",1+mn);
for(int i=1;i<=cnt[2];i++) printf("%d ",2+mn);
}