zoukankan      html  css  js  c++  java
  • codeforces div.1 A

    A. 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 000, 1 ≤ 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.


    简述题意:

    他每秒可以选择是四舍五入某一位或者重新取 比如10.245 两秒-》第一秒10.25-》第二秒四舍五入10.3
    n是字符串长度 t是秒
    #include <stdio.h>
    const int Maxn = 200010;
    char s[Maxn];
    int main() {
        int n , t , i , flag = 0;
        scanf("%d%d",&n,&t);
        scanf("%s",s+1);
        for(i=1; i<=n; ++i) {
            if(s[i] == '.') flag = 1;
            if(flag && s[i] >= '5') {
                break;
            }
        }
        while(s[i]>='5' && t--) {
            if(s[i-1] == '.') {
                i-=2;
                while(s[i] == '9') {
                    s[i] = '0';
                    --i;
                }
                if(i == 0) putchar('1');
                else ++s[i];
                for(int i=1; s[i] != '.'; ++i) printf("%c",s[i]);
                return 0;
            }
            else ++s[--i];
        }
        s[++i] = '';
        printf("%s",s+1);
    }  
    View Code

    //没交不知道A没A

    //睡觉 论忘记报名的悲伤

  • 相关阅读:
    java synchronized
    [多问几个为什么]为什么匿名内部类中引用的局部变量和参数需要final而成员字段不用?(转)
    Java中static、final用法小结(转)
    使用 Spring 2.5 注释驱动的 IoC 功能(转)
    (转载)Spring 注解@Component,@Service,@Controller,@Repository
    Spring中@Autowired注解、@Resource注解的区别
    控制反转和依赖注入模式(转)
    HDU 4758 Walk Through Squares (2013南京网络赛1011题,AC自动机+DP)
    HDU 4745 Two Rabbits (2013杭州网络赛1008,最长回文子串)
    HDU 4747 Mex (2013杭州网络赛1010题,线段树)
  • 原文地址:https://www.cnblogs.com/gc812/p/5901841.html
Copyright © 2011-2022 走看看