码迷,mamicode.com
首页 > 其他好文 > 详细

【模拟赛】鱼塘钓鱼

时间:2014-10-03 11:33:44      阅读:171      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   io   os   ar   for   sp   

bubuko.com,布布扣bubuko.com,布布扣

简单贪心

bubuko.com,布布扣
# include<cstdio>
# include<cstring>
# include<algorithm>
using namespace std;
const int maxn=10000000+10;
int n,k,t;
unsigned long long tot;
int num[maxn];
int main(){
    freopen("fishing.in","r",stdin);
    freopen("fishing.out","w",stdout);
    int x,max=-0x7fffffff;
    scanf("%d%d%d",&n,&k,&t);
    for(int i=1;i<=n;i++){
        scanf("%d",&x);
        num[x]++;
        if(x>max)max=x;
    }
    //for(int i=1;i<=4;i++)printf("%d ",num[i]);
    for(int i=1;i<=t;i++){
        if(max>=k){
            tot+=k;
            num[max]--;    
            num[max-k]++;
        }
        else if(max<k) {
            tot+=max;
            num[max]--;
            num[0]++;
        }
        for(int j=max;j>=0;j--)
        if(num[j]){max=j;break;}
        if(max==0)break;
    }
    printf("%I64u",tot);
    return 0;
}
View Code

 

【模拟赛】鱼塘钓鱼

标签:style   blog   http   color   io   os   ar   for   sp   

原文地址:http://www.cnblogs.com/zoniony/p/4004724.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!