比赛 |
EYOI常规赛 1st |
评测结果 |
AAAAAAAAAA |
题目名称 |
奶牛晒衣服 |
最终得分 |
100 |
用户昵称 |
李伟 |
运行时间 |
0.506 s |
代码语言 |
C++ |
内存使用 |
4.73 MiB |
提交时间 |
2021-12-02 18:19:47 |
显示代码纯文本
/*
C++ Code
http://oijzh.cnblogs.com
By jiangzh
*/
#include<cstdio>
#include<queue>
using namespace std;
#define MAXN 500010
int n,a,b,wet[MAXN];
priority_queue<int> q;
int num=0,ans=0;
void init()
{
freopen("dry.in","r",stdin);
freopen("dry.out","w",stdout);
scanf("%d%d%d",&n,&a,&b);
for(int i=1;i<=n;i++) {scanf("%d",&wet[i]);q.push(wet[i]);}
}
void work()
{
int sum=0;
while(1)
{
if(sum>=q.top()) {printf("%d",ans);return;}
sum+=a;
int x=q.top();q.pop();
x-=b;
q.push(x);
ans++;
}
}
int main()
{
init();
work();
return 0;
}