比赛 |
20170919普及组 |
评测结果 |
AAAAAAAAAA |
题目名称 |
iCow播放器 |
最终得分 |
100 |
用户昵称 |
REALIZE_BEYOND |
运行时间 |
0.268 s |
代码语言 |
C++ |
内存使用 |
0.33 MiB |
提交时间 |
2017-09-19 19:55:29 |
显示代码纯文本
#include<cstdio>
#include<iostream>
#include<algorithm>
#define maxn 1005
using namespace std;
int N,T,a[maxn],t2,t3,t4;
struct kyh{
int w,id;
}t[maxn];
bool cmp(kyh a,kyh b){
if(a.w!=b.w) return a.w>b.w;
else return a.id<b.id;
}
int main(){
freopen("icow.in","r",stdin);
freopen("icow.out","w",stdout);
cin>>N>>T;
for(int i=1;i<=N;i++)
cin>>a[i];
for(int i=1;i<=T;i++){
for(int j=1;j<=N;j++){
t[j].w=a[j];
t[j].id=j;
}
sort(t+1,t+N+1,cmp);
cout<<t[1].id<<"\n";
t2=t[1].w/(N-1);
t3=t[1].w%(N-1);
a[t[1].id]=0;
// for(int j=1;j<=N;j++) cout<<a[j]<<" ";cout<<"\n";
for(int j=1;j<=N;j++)
if(j!=t[1].id)
a[j]+=t2;
if(t3!=0){
for(int i=1;i<=t3;i++){
if(i==t[1].id){
t3++;
continue;
}
else a[i]++;
}
}
}
return 0;
}