比赛 EYOI常规赛 1st 评测结果 AAAAAAAAAA
题目名称 奶牛晒衣服 最终得分 100
用户昵称 铑小子 运行时间 0.502 s
代码语言 C++ 内存使用 3.56 MiB
提交时间 2021-12-02 18:28:52
显示代码纯文本
#include <bits/stdc++.h>
using namespace std;

priority_queue<int> sta;

int main(){
	freopen("dry.in","r",stdin);
	freopen("dry.out","w",stdout);
    int t=0,i,j,k,m,n,a,b;
    scanf("%d%d%d",&n,&a,&b);
    for(i=1;i<=n;i=-~i){
        scanf("%d",&k);
        sta.push(k);
    }
    t+=a;
    k=sta.top();
    sta.pop();
    k-=b;
    sta.push(k);
    while(1){
        k=sta.top();
        sta.pop();
        if(k-t<=0){
            printf("%d",t/a);
            return 0;
        }
        t+=a;
        k-=b;
        sta.push(k);
    }
    return 0;
}