记录编号 |
127083 |
评测结果 |
AAAAA |
题目名称 |
[NOIP 2002]均分纸牌 |
最终得分 |
100 |
用户昵称 |
Fmuckss |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.001 s |
提交时间 |
2014-10-14 20:53:53 |
内存使用 |
0.29 MiB |
显示代码纯文本
#include<stdio.h>
#define maxn 105
//#define maxm 10005
int a[maxn];
int main()
{
freopen("jfzp.in","r",stdin);
freopen("jfzp.out","w",stdout);
int n,i=1,m,sum=0,w=0,p,tot=0;
// a[0]=100005;
scanf("%d",&n);
while(i<=n&&scanf("%d",&a[i])==1)
{
sum=sum+a[i];
i++;
}
m=sum/n;
for(p=1;p<=n;)
{
if(a[p]==m)
{
p++;
continue;
}
if(a[p]<m)
{
a[p+1]=a[p+1]-(m-a[p]);
a[p]=m;
p++;
tot++;
continue;
}
if(a[p]>m)
{
a[p+1]=a[p+1]+(a[p]-m);
a[p]=m;
p++;
tot++;
continue;
}
}
printf("%d",tot);
return 0;
}