码迷,mamicode.com
首页 > 其他好文 > 详细

【Codeforces 723C】Polycarp at the Radio 贪心

时间:2016-10-04 07:24:55      阅读:196      评论:0      收藏:0      [点我收藏+]

标签:

n个数,用最少的次数来改变数字,使得1到m出现的次数的最小值最大。输出最小值和改变次数以及改变后的数组。

最小值最大一定是n/m,然后把可以改变的位置上的数变为需要的数。

http://codeforces.com/problemset/problem/723/C

Examples
input
4 2
1 2 3 2
output
2 1
1 2 1 2



input
7 3
1 3 2 2 2 2 1
output
2 1
1 3 3 2 2 2 1



input
4 4
1000000000 100 7 1000000000
output
1 4
1 2 3 4
#include<bits/stdc++.h>
using namespace std;
int n,m,a[2005];
int pos[2005],cnt;
int cha[2005];
int ans,ans2;
int main(){
	scanf("%d%d",&n,&m);
	for(int i=1;i<=n;i++){
		scanf("%d",&a[i]);
	}
	ans=n/m;
	printf("%d ",ans);

	for(int i=1;i<=m;i++){
		int num=0;
		int j;
		for(j=1;j<=n;j++){
			if(a[j]==i){
				num++;
				pos[j]=1;//代表j位置不能改变
			}
			if(num==ans)break;
		}
		if(num<ans){cha[i]=ans-num;ans2+=cha[i];}
	}
	int j=1;
	for(int i=1;i<=m;i++){
		for(int k=0;k<cha[i];k++){
			while(pos[j])j++;
			a[j++]=i;
		}
	}
	printf("%d\n",ans2);
	for(int i=1;i<=n;i++)
		printf("%d ",a[i]);
}

  

【Codeforces 723C】Polycarp at the Radio 贪心

标签:

原文地址:http://www.cnblogs.com/flipped/p/5929995.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!