比赛 20121023 评测结果 AAAAAAAAAA
题目名称 奶牛晒衣服 最终得分 100
用户昵称 TBK 运行时间 1.515 s
代码语言 C++ 内存使用 0.31 MiB
提交时间 2012-10-23 21:59:27
显示代码纯文本
#include <cstdlib>
#include <cmath>
#include <cstring>
#include <cstdio>
#include <string>
#include <iostream>
#include <set>
#include <algorithm>
using namespace std;
multiset<long long > s;
multiset <long long> ::iterator x,y;
long long a,b,c,d,l,m,n,t;
int main(void)
{
    freopen ("dry.in","r",stdin);
    freopen ("dry.out","w",stdout);
    scanf("%d%d%d",&a,&b,&c);
    m=0;
    for (d=0;d<a;d++)
    {
        scanf("%d",&l);
        s.insert(l);
    }
    x=s.upper_bound(m);
    while (x!=s.end())
    {
        t++;
        y=s.end();
        y--;
        n=*y;
        n-=c;
        s.erase(y);
        s.insert(n);
        m+=b;
        x=s.upper_bound(m);
    }
    printf("%d",t);
    fclose(stdin);
    fclose(stdout);
    return 0;
}