zoukankan      html  css  js  c++  java
  • Codeforces Round #373 (Div. 2) C. Efim and Strange Grade 水题

    C. Efim and Strange Grade

    题目连接:

    http://codeforces.com/contest/719/problem/C

    Description

    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.

    Sample Input

    6 1
    10.245

    Sample Output

    10.25

    Hint

    题意

    给你一个数,你最多做T次四舍五入,问你最大能够是多少

    题解:

    找到第一个能够进位的数,然后贪心的去四舍五入就好了。

    水题

    代码

    #include<bits/stdc++.h>
    using namespace std;
    string s;
    int main()
    {
        int n,t;
        scanf("%d%d",&n,&t);
        cin>>s;
        int i=0;
        while(s[i]!='.')i++;
        while(i<n&&s[i]<'5')i++;
        if(i==n)
        {
            cout<<s<<endl;
            return 0;
        }
        i--;int len=0;
        while(t>0)
        {
            if(s[i]!='.')s[i]++;
            else{
                i--;len=i;
                while(i>=0&&s[i]=='9')s[i--]='0';
                if(i==-1)cout<<'1';
                else s[i]++;
                break;
            }
            if(s[i]<'5')
            {
                len=i;
                break;
            }
            else
            {
                len=i;
                i--;
            }
            t--;
        }
        for(int k=0;k<=len;k++)
            cout<<s[k];
        cout<<endl;
    }
  • 相关阅读:
    DataGrid和GridView鼠标移动上面背景变色
    Javascript页面跳转常用代码(测试通过)
    设为首页,加入收藏夹
    Javascript实现金额千分位自动分位
    对用户输入内容进行字数提示功能
    Javascript网页刷新方法集锦(测试通过)
    asp.net 上传图片并作处理 水印 缩略图(测试OK)
    ASP.NET常用函数(参考用)
    Javascript弹出对话框 确定取消转到不同页面
    silverligth +wcf 下载文件
  • 原文地址:https://www.cnblogs.com/qscqesze/p/5902450.html
Copyright © 2011-2022 走看看