CodeForces 581C - Developing Skills(模擬)

C. Developing Skills
time limit per test1 second
memory limit per test256 megabytes
inputstandard input
outputstandard 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 ≤ 105, 0 ≤ 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.

Examples
input
2 4
7 9
output
2
input
3 8
17 15 19
output
5
input
2 2
99 100
output
20
Note
In the first test case the optimal strategy is as follows. Petya has to improve the first skill to 10 by spending 3 improvement units, and the second skill to 10, by spending one improvement unit. Thus, Petya spends all his improvement units and the total rating of the character becomes equal to lfloor frac{100}{10} rfloor +  lfloor frac{100}{10} rfloor = 10 + 10 =  20.

In the second test the optimal strategy for Petya is to improve the first skill to 20 (by spending 3 improvement units) and to improve the third skill to 20 (in this case by spending 1 improvement units). Thus, Petya is left with 4 improvement units and he will be able to increase the second skill to 19 (which does not change the overall rating, so Petya does not necessarily have to do it). Therefore, the highest possible total rating in this example is .

In the third test case the optimal strategy for Petya is to increase the first skill to 100 by spending 1 improvement unit. Thereafter, both skills of the character will be equal to 100, so Petya will not be able to spend the remaining improvement unit. So the answer is equal to .

題意:
給出n個技能的當前技能點數,和k個可用的技能點,分配給這n個技能.
求每個技能的技能點除以10向下取整的和最大是多少.
技能點最大是100.

解題思路:
對每個數的最後一位進行排序,優先把最後一位大的填滿.

AC代碼:

#include<bits/stdc++.h>
using namespace std;
const int maxn = 1e5+5;
struct node
{
    int num;
    int digit;
}a[maxn];
bool cmp(node a,node b){return a.digit > b.digit;}
int main()
{
    int n,k;
    scanf("%d%d",&n,&k);
    for(int i = 0;i < n;i++)
        scanf("%d",&a[i].num),a[i].digit = a[i].num%10;
    sort(a,a+n,cmp);
    for(int i = 0;i < n;i++)
    {
        if(!k)  break;
        if(a[i].num == 100) continue;
        if(a[i].digit + k >= 10)  a[i]. num += 10-a[i].digit,k -= 10-a[i].digit;
        else break;
    }
    for(int i = 0;i < n;i++)
    {
        if(!k)  break;
        int tmp = min(k/10,(100-a[i].num)/10);
        a[i].num += tmp*10;
        k -= 10*tmp;
    }
    int sum = 0;
    for(int i = 0;i < n;i++)    sum += a[i].num/10;
    printf("%d",sum);
    return 0;
}
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章