zoukankan      html  css  js  c++  java
  • codeforces 581C Developing Skills

    C. 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 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.

    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
     1 #include<cstdio>
     2 #include<cmath>
     3 #include<queue>
     4 #include<algorithm>
     5 using namespace std;
     6 
     7 struct node
     8 {
     9     int score;
    10     int cost;
    11     bool operator < (const node tmp)const
    12     {
    13         if(cost==tmp.cost)
    14             return score>tmp.score;
    15         return cost>tmp.cost;
    16     }
    17 };
    18 
    19 int main()
    20 {
    21     int n,k;
    22     while(scanf("%d%d",&n,&k)!=EOF)
    23     {
    24         int sum=0;
    25         priority_queue<node>q;
    26         for(int i=0;i<n;i++)
    27         {
    28             int tmp;
    29             node e;
    30             scanf("%d",&tmp);
    31             e.score=tmp/10;
    32             e.cost=((int)((tmp+10)*1.0/10))*10-tmp;
    33             q.push(e);
    34         }
    35         while(1)
    36         {
    37             node e=q.top();
    38             if(k>=e.cost&&e.score<10)
    39             {
    40                 q.pop();
    41                 k-=e.cost;
    42                 q.push((node){e.score+1,10});
    43             }
    44             else break;
    45         }
    46         while(!q.empty())
    47         {
    48             sum+=q.top().score;
    49             q.pop();
    50         }
    51         printf("%d
    ",sum);
    52     }
    53     return 0;
    54 }
  • 相关阅读:
    php中的高危函数
    PHP 站点相对包含,路径的问题解决方法(include,require)
    PHP中::、-&gt;、self、$this操作符的区别
    C#常用类库(100多个)
    Android滑动菜单特效实现,仿人人客户端侧滑效果,史上最简单的侧滑实现
    转载:Android调用相册、拍照实现缩放、切割图片
    在浏览器上直接输入url 时,中文传参乱码问题
    一个asp采集程序
    c#微信开发 转
    如何使用JS来检测游览器是什么类型,或android是什么版本号- 转载
  • 原文地址:https://www.cnblogs.com/homura/p/4989471.html
Copyright © 2011-2022 走看看