Run ID | 作者 | 问题 | 语言 | 测评结果 | 分数 | 时间 | 内存 | 代码长度 | 提交时间 |
---|---|---|---|---|---|---|---|---|---|
2046 | 未知用户 | 均分纸牌 | C++ | 通过 | 100 | 0 MS | 264 KB | 371 | 2019-11-04 18:37:09 |
#include<bits/stdc++.h> using namespace std; int main(){ int n,ave,step,a[100000],i,j; cin>>n; ave=0;step=0; for (i=1;i<=n;++i){ cin>>a[i]; ave+=a[i]; } ave/=n; for (i=1;i<=n;++i) a[i]-=ave; i=1;j=n; while (a[i]==0&&i<n) ++i; while (a[j]==0&&j>1) --j; while (i<j){ a[i+1]+=a[i]; a[i]=0; ++step; ++i; while (a[i]==0&&i<j) ++i; } cout<<step<<endl; }