cf 581C---- Developing Skills(简单贪心)

题目:

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 xdown 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 Input

Input
2 4
7 9
Output
2
Input
3 8
17 15 19
Output
5
Input
2 2
99 100
Output
20

Hint

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 lfloorfrac{100}{10} rfloor +  lfloorfrac{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个技能,每个技能有一定的等级[0-100]之间,在刚开始我们有k个技能点可以加到角色上,求最后每项技能除10的最大整数和。

分析:

   对给定的最初的技能等级,按照余数从大到下排序(贪心思想---即先满足余数大的),应为要求技能等级不能超过100!!!,这是重点。所以在一边余数加完后继续判断k是否大于0,然后算出每个技能到100级还差多少,根据这个再把剩余技能点分配。

代码:

 1 #include<iostream>
 2 #include<algorithm>
 3 using namespace std;
 4 const int maxn=100005;
 5 int sk[maxn];
 6 bool cmp(int a,int b)
 7 {
 8     return a%10>b%10;
 9 }
10 int main()
11 {
12     int n,k,num=0;
13     cin>>n>>k;
14     for(int i=0;i<n;i++){
15         cin>>sk[i];
16     }
17     //cout<<num<<endl;
18     sort(sk,sk+n,cmp);
19     for(int i=0;i<n;i++)
20     {
21         if(k>=(10-sk[i]%10))
22         {
23             k-=(10-sk[i]%10);
24             sk[i]+=(10-sk[i]%10);
25             //cout<<sk[i]<<endl;
26         }
27         else break;
28     }
29     int ans=0;
30     for(int i=0;i<n;i++)
31     {
32         int mid=100-sk[i];
33         ans+=mid;
34     }
35     //cout<<ans<<endl;
36     if(k<ans)
37     {
38         ans=k-k%10;
39     }
40     for(int i=0;i<n;i++)
41     {
42         num+=sk[i]/10;
43     }
44     //cout<<num<<endl;
45     cout<<(ans/10+num)<<endl;
46     return 0;
47 }
View Code

 

posted on 2015-10-06 08:49  for_AC  阅读(145)  评论(0编辑  收藏  举报

导航