zoukankan      html  css  js  c++  java
  • Codeforces Round #373 (Div. 2) C. Efim and Strange Grade —— 贪心 + 字符串处理

    题目链接:http://codeforces.com/problemset/problem/719/C


    C. Efim and Strange Grade
    time limit per test
    1 second
    memory limit per test
    256 megabytes
    input
    standard input
    output
    standard output

    Efim just received his grade for the last test. He studies in a special school and his grade can be equal to any positive decimal fraction. First he got disappointed, as he expected a way more pleasant result. Then, he developed a tricky plan. Each second, he can ask his teacher to round the grade at any place after the decimal point (also, he can ask to round to the nearest integer).

    There are t seconds left till the end of the break, so Efim has to act fast. Help him find what is the maximum grade he can get in no more than t seconds. Note, that he can choose to not use all t seconds. Moreover, he can even choose to not round the grade at all.

    In this problem, classic rounding rules are used: while rounding number to the n-th digit one has to take a look at the digit n + 1. If it is less than 5 than the n-th digit remain unchanged while all subsequent digits are replaced with 0. Otherwise, if the n + 1 digit is greater or equal to 5, the digit at the position n is increased by 1 (this might also change some other digits, if this one was equal to 9) and all subsequent digits are replaced with 0. At the end, all trailing zeroes are thrown away.

    For example, if the number 1.14 is rounded to the first decimal place, the result is 1.1, while if we round 1.5 to the nearest integer, the result is 2. Rounding number 1.299996121 in the fifth decimal place will result in number 1.3.

    Input

    The first line of the input contains two integers n and t (1 ≤ n ≤ 200 0001 ≤ t ≤ 109) — the length of Efim's grade and the number of seconds till the end of the break respectively.

    The second line contains the grade itself. It's guaranteed that the grade is a positive number, containing at least one digit after the decimal points, and it's representation doesn't finish with 0.

    Output

    Print the maximum grade that Efim can get in t seconds. Do not print trailing zeroes.

    Examples
    input
    6 1
    10.245
    
    output
    10.25
    
    input
    6 2
    10.245
    
    output
    10.3
    
    input
    3 100
    9.2
    
    output
    9.2
    
    Note

    In the first two samples Efim initially has grade 10.245.

    During the first second Efim can obtain grade 10.25, and then 10.3 during the next second. Note, that the answer 10.30 will be considered incorrect.

    In the third sample the optimal strategy is to not perform any rounding at all.


    题解:

    1.整段数字被分成两部分, 小数部分和正数部分。 先对小数部分进行进位。

    2.首先找到小数点后第一个大于等于5的位置,对这个位置进行四舍五入。进位时,先用个while循环处理完'999……'的进位,然后再对当前位+1。如果当前位<5,就可以马上停止了, 因为前面的数都不可能>=5。 如果当前位>=5, 则继续下一次四舍五入(一定是当前位,所以不必每次都遍历找第一个>=5的数),最多t次。


    代码如下:

     1 #include <iostream>
     2 #include <cstdio>
     3 #include <cstring>
     4 #include <cstdlib>
     5 #include <string>
     6 #include <vector>
     7 #include <map>
     8 #include <set>
     9 #include <queue>
    10 #include <stack>
    11 #include <sstream>
    12 #include <algorithm>
    13 using namespace std;
    14 #define ms(a, b)  memset((a), (b), sizeof(a))
    15 typedef long long LL;
    16 const double eps = 1e-6;
    17 const int INF = 2e9;
    18 const LL LNF = 9e18;
    19 const int mod = 1e9+7;
    20 const int maxn = 2e5+10;
    21 
    22 char s[maxn];
    23 int n, t, dot;
    24 
    25 int main()
    26 {
    27     scanf("%d%d%s",&n, &t, s+1);
    28     for(dot = 1; dot<=n; dot++)
    29         if(s[dot]=='.') break;
    30 
    31     int i;
    32     for(i = dot+1; i<=n; i++)
    33         if(s[i]>='5') break;
    34 
    35     if(i>n)
    36     {
    37         puts(s+1);
    38         return 0;
    39     }
    40 
    41     while(t--)
    42     {
    43         s[i--] = 0;
    44         while(s[i]!='.' && s[i]=='9')
    45             s[i--] = 0;
    46         if(s[i]!='.') s[i]++;
    47 
    48         if(s[i]=='.' || s[i]<'5') break;
    49     }
    50 
    51     if(s[dot+1]==0)
    52     {
    53         s[dot] = 0;
    54         i = dot-1;
    55 
    56         while(i>=1 && s[i]=='9')
    57             s[i--] = '0';
    58         if(i>=1) s[i]++;
    59         else putchar('1');
    60     }
    61     puts(s+1);
    62 }
    View Code


  • 相关阅读:
    【Android游戏开发之八】游戏中添加音频详解MediaPlayer与SoundPool的利弊以及各个在游戏中的用途!
    【Android游戏开发之九】(细节处理)触屏事件中的Bug解决方案以及禁止横屏和竖屏切换!
    【Android游戏开发之七】(游戏开发中需要的样式)再次剖析游戏开发中对SurfaceView中添加组件方案!
    前端要给力之:URL应该有多长?
    【Android游戏开发之三】剖析 SurfaceView ! Callback以及SurfaceHolder!!
    charactersFound方法中的陷阱
    前端要给力之:分解对象构造过程new()
    结合UIImageView实现图片的移动和缩放
    【Android游戏开发之一】设置全屏以及绘画简单的图形
    扩展BaseAdapter实现在ListView中浏览文件
  • 原文地址:https://www.cnblogs.com/DOLFAMINGO/p/7538693.html
Copyright © 2011-2022 走看看