Codeforces Round #322 (Div. 2)C. Developing Skills

C. Developing Skills
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Petya loves computer games. Finally a game that he's been waiting for so long came out!

The main character of this game has n different skills, each of which is characterized by an integer ai from 0 to 100. The higher the number ai is, the higher is the i-th skill of the character. The total rating of the character is calculated as the sum of the values ​​of  for all i from 1 to n. The expression ⌊ x denotes the result of rounding the number x down to the nearest integer.

At the beginning of the game Petya got k improvement units as a bonus that he can use to increase the skills of his character and his total rating. One improvement unit can increase any skill of Petya's character by exactly one. For example, if a4 = 46, after using one imporvement unit to this skill, it becomes equal to 47. A hero's skill cannot rise higher more than 100. Thus, it is permissible that some of the units will remain unused.

Your task is to determine the optimal way of using the improvement units so as to maximize the overall rating of the character. It is not necessary to use all the improvement units.

Input

The first line of the input contains two positive integers n and k (1 ≤ n ≤ 1050 ≤ k ≤ 107) — the number of skills of the character and the number of units of improvements at Petya's disposal.

The second line of the input contains a sequence of n integers ai (0 ≤ ai ≤ 100), where ai characterizes the level of the i-th skill of the character.

Output

The first line of the output should contain a single non-negative integer — the maximum total rating of the character that Petya can get using k or less improvement units.

Sample test(s)
input
2 4
7 9
output
2
input
3 8
17 15 19
output
5
input
2 2
99 100
output
20

貪心。要注意每個值最多加到100.

By Jidong, contest:
Codeforces Round #322 (Div. 2), problem: (C) Developing Skills, Accepted, #
#include<cstring>
#include<algorithm>
#include<cstdio>
#include<iostream>
using namespace std;

const int N=100005;
int n,k;
struct node {
    int a,b;
} p[N];

int cmp(node a,node b) {
    return a.b<b.b;
}
int main() {
    //freopen("test.in","r",stdin);
    while(~scanf("%d%d",&n,&k)) {
        int ans=0;
        for(int i=0; i<n; i++) {
            scanf("%d",&p[i].a);
            ans+=p[i].a/10;
            p[i].b=p[i].a%10;
        }
        sort(p,p+n,cmp);
        int sum=0;
        for(int i=n-1; i>=0; i--) {
            int x=10-p[i].b;
            if(x==10&&p[i].a==100)continue;
            if(k<x)break;
            sum+=100-(p[i].a-p[i].b+10);
            ans++;
            k-=x;
        }
        ans+=min(k,sum)/10;
        printf("%d\n",ans);
    }
    return 0;
}


發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章