繁华模拟赛day8 科技树

Posted ACforever

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了繁华模拟赛day8 科技树相关的知识,希望对你有一定的参考价值。

/*
贪心,很明显是越容易升级的越先升级
*/
#include<iostream>
#include<cstdio>
#include<string>
#include<cstring>
#include<algorithm>
using namespace std;
const int maxn = 100050;
int n,k,t,a[maxn],lv[maxn],ans;
int read(){
    char ch=getchar();
    int x=0,f=1;
    while(!(ch>=\'0\'&&ch<=\'9\')){if(ch==\'-\')f=-1;ch=getchar();};
    while(ch>=\'0\'&&ch<=\'9\'){x=x*10+(ch-\'0\');ch=getchar();};
    return x*f;
}
bool cmp(int a,int b){
    return (a % 10) > (b % 10);
}
int main(){
    freopen("science.in","r",stdin);
    freopen("science.out","w",stdout);
    n = read();
    k = read();
    for(int i = 1;i <= n;i++) a[i] = read();
    sort(a+1,a+1+n,cmp);
    for(int i = 1;i <= n;i++){
        lv[i] = a[i] / 10;
        t = 10 - (a[i] % 10);
        if(k >= t && lv[i] <= 9){
            k -= t;
            lv[i]++;
            a[i] = 0;
        }
    }
    for(int i = 1;i <= n;i++){
        if(lv[i] <= 9){
            t = min(10-lv[i],k/10);
            lv[i] += t;
            k -= t*10;
        }
        ans += lv[i];
    }
    cout<<ans;
    return 0;
} 

 

以上是关于繁华模拟赛day8 科技树的主要内容,如果未能解决你的问题,请参考以下文章

繁华模拟赛day8 牛栏

[繁华模拟赛]Evensgn 剪树枝

繁华模拟赛 过河

繁华模拟赛 摆书

繁华模拟赛 约会

繁华模拟赛 最优得分