zoukankan      html  css  js  c++  java
  • CF div2 322 C

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

    题意很清晰。。。可以用结构体排序做,我用的优先队列,然后模拟就行了

     1 #include <cstdio>
     2 #include <cstring>
     3 #include <iostream>
     4 #include <stack>
     5 #include <queue>
     6 #include <map>
     7 #include <algorithm>
     8 #include <vector>
     9 
    10 using namespace std;
    11 
    12 const int maxn = 1000005;
    13 
    14 typedef long long LL;
    15 
    16 vector<int>G[maxn];
    17 
    18 priority_queue< pair<int,int> >Q;
    19 
    20 int a[maxn];
    21 
    22 int main()
    23 {
    24     int n,m;
    25     int tmp = 0;
    26     int k;
    27     int ans = 0;
    28     scanf("%d%d",&n,&k);
    29     for(int i=1;i<=n;i++){
    30         scanf("%d",&tmp);
    31         ans += tmp/10;
    32         if(tmp < 100){
    33             int m = tmp / 10;
    34             int r = tmp % 10;
    35             Q.push(make_pair(r,m));
    36         }
    37     }
    38     bool flag = true;
    39     while(!Q.empty()&&k>0&&flag){
    40         int r = Q.top().first;
    41         int m = Q.top().second;
    42         Q.pop();
    43         flag = false;
    44         int re = 10 - r;
    45         if(k >= re){
    46             flag = true;
    47             k -= re;
    48             ans++;
    49             if(m < 9){
    50                 Q.push(make_pair(0,m+1));
    51             }
    52         }
    53     }
    54     printf("%d
    ",ans);
    55     return 0;
    56 }
    View Code
  • 相关阅读:
    PHP:第四章——PHP数组处理函数
    PHP:第四章——PHP数组array_intersect计算数组交集
    PHP:第四章——PHP数组array_diff计算数组差集
    PHP:第四章——PHP数组查找,替换,过滤,判断相关函数
    GPG入门
    GPG入门教程
    运行gpg --gen-key生成key时出现卡住的问题
    程序员练级攻略(2018) 与我的专栏
    构建一个在线ASCII视频流服务
    Ubuntu 16.04配置国内高速apt-get更新源
  • 原文地址:https://www.cnblogs.com/lmlyzxiao/p/4847156.html
Copyright © 2011-2022 走看看