记录编号 |
567647 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2010冲刺十二]奶牛晒衣服 |
最终得分 |
100 |
用户昵称 |
ムラサメ |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.162 s |
提交时间 |
2021-12-02 19:56:41 |
内存使用 |
2.54 MiB |
显示代码纯文本
- #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;
- }