记录编号 |
329101 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2010冲刺十二]奶牛晒衣服 |
最终得分 |
100 |
用户昵称 |
coolkid |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.283 s |
提交时间 |
2016-10-24 20:43:50 |
内存使用 |
2.22 MiB |
显示代码纯文本
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
using namespace std;
const int MAXN=500010;
int A[MAXN],n,a,b;
int readint(){
char ch=getchar();int res=0;
while(ch<'0'||ch>'9') ch=getchar();
while(ch>='0'&&ch<='9') res=res*10+ch-48,ch=getchar();
return res;
}
void init(){
n=readint();a=readint();b=readint();
for(int i=1;i<=n;i++) A[i]=readint();
}
bool judge(int x){
int temp=0;
for(int i=1;i<=n;i++){
int left=A[i]-x*a;
if(left<=0) continue;
temp+=(left/b);
if(left%b!=0) temp++;
if(temp>x) return false;
}
return temp<=x;
}
void Binary(){
int L=0,R=500000;
while(L<R){
int mid=L+R>>1;
if(judge(mid)) R=mid;
else L=mid+1;
}
printf("%d\n",L);
}
int main(){
freopen("dry.in","r",stdin);
freopen("dry.out","w",stdout);
init();
Binary();
}