比赛 |
EYOI常规赛 1st |
评测结果 |
AAAAAAAAAA |
题目名称 |
奶牛晒衣服 |
最终得分 |
100 |
用户昵称 |
ムラサメ |
运行时间 |
0.412 s |
代码语言 |
C++ |
内存使用 |
3.65 MiB |
提交时间 |
2021-12-02 19:57:06 |
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
priority_queue<int>q;
int n,a,b,temp,cnt;
int main(){
freopen("dry.in","r",stdin);
freopen("dry.out","w",stdout);
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin>>n>>a>>b;
for(int i=1;i<=n;i++){
cin>>temp;
q.push(temp);
}
for(;;){
cnt++;
temp=q.top();
q.pop();
temp-=b;
q.push(temp);
if(q.top()-cnt*a<=0){
cout<<cnt<<endl;
return 0;
}
}
return 0;
}