zoukankan      html  css  js  c++  java
  • cf581C 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 numberai 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 .

    题意是n个技能加点,有m点可以加,每个技能点数不能超过100。最后战斗力是Σ(a[i]/10)(是整除10)。求最大战斗力。

    这贪心搞一下最后一位然后随便做就好了。。

    一开始没处理全100的时候依然往上加结果gg……wa来wa去一时爽

     1 #include<set>
     2 #include<map>
     3 #include<cmath>
     4 #include<ctime>
     5 #include<deque>
     6 #include<queue>
     7 #include<bitset>
     8 #include<cstdio>
     9 #include<cstdlib>
    10 #include<cstring>
    11 #include<iostream>
    12 #include<algorithm>
    13 #define LL long long
    14 #define inf 0x7fffffff
    15 #define pa pair<int,int>
    16 #define pi 3.1415926535897932384626433832795028841971
    17 using namespace std;
    18 inline LL read()
    19 {
    20     LL x=0,f=1;char ch=getchar();
    21     while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
    22     while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
    23     return x*f;
    24 }
    25 int n,m,ans;
    26 int a[100010];
    27 inline bool cmp(int a,int b)
    28 {
    29     int x=a%10,y=b%10;x=10-x;y=10-y;
    30     if (x<y)return 1;
    31     if (y<x)return 0;
    32     return a<b;
    33 }
    34 int main()
    35 {
    36     n=read(),m=read();
    37     for(int i=1;i<=n;i++)a[i]=read(),ans+=a[i]/10;
    38     sort(a+1,a+n+1,cmp);
    39     for (int i=1;i<=n;i++)
    40     {
    41         if (a[i]==100)continue;
    42         int x=a[i]%10;x=10-x;
    43         if(x>m)break;
    44         m-=x;a[i]+=x;ans++;
    45     }
    46     sort(a+1,a+n+1);
    47     for (int i=1;i<=n;i++)while (a[i]<=90&&m>=10)ans++,a[i]+=10,m-=10;
    48     printf("%d
    ",ans);
    49 }
    cf581C
    ——by zhber,转载请注明来源
  • 相关阅读:
    2016.10.09
    Httpie 进行web请求模拟
    Python-集合
    python-字典
    MySQL权限系统
    MySQL8.0安装以及介绍(二进制)
    数据库对象中英文介绍
    Python-字符串
    GIT安装部署
    Cobbler安装部署
  • 原文地址:https://www.cnblogs.com/zhber/p/4845154.html
Copyright © 2011-2022 走看看