记录编号 567647 评测结果 AAAAAAAAAA
题目名称 [NOIP 2010冲刺十二]奶牛晒衣服 最终得分 100
用户昵称 Gravatarムラサメ 是否通过 通过
代码语言 C++ 运行时间 0.162 s
提交时间 2021-12-02 19:56:41 内存使用 2.54 MiB
显示代码纯文本
  1. #include<bits/stdc++.h>
  2. using namespace std;
  3. priority_queue<int>q;
  4. int n,a,b,temp,cnt;
  5. int main(){
  6. freopen("dry.in","r",stdin);
  7. freopen("dry.out","w",stdout);
  8. ios::sync_with_stdio(false);
  9. cin.tie(0);
  10. cout.tie(0);
  11. cin>>n>>a>>b;
  12. for(int i=1;i<=n;i++){
  13. cin>>temp;
  14. q.push(temp);
  15. }
  16. for(;;){
  17. cnt++;
  18. temp=q.top();
  19. q.pop();
  20. temp-=b;
  21. q.push(temp);
  22. if(q.top()-cnt*a<=0){
  23. cout<<cnt<<endl;
  24. return 0;
  25. }
  26. }
  27. return 0;
  28. }