Codeforces Round #373 (Div. 2) 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 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.


题意:
给出长度为n的字符串表示一个浮点数,给出t
要求最多四舍五入t次,输出能得到的最大的数

思路:大模拟

代码:
#include<iostream>
#include<cstdio>
#include<cstring>
#include<algorithm>
#include<string>
#include<vector>
#include <ctime>
#include<queue>
#include<set>
#include<map>
#include<list>
#include<stack>
#include<iomanip>
#include<cmath>
#include<bitset>
#define mst(ss,b) memset((ss),(b),sizeof(ss))
///#pragma comment(linker, "/STACK:102400000,102400000")
typedef long long ll;
typedef long double ld;
#define INF (1ll<<60)-1
#define Max 1e9
using namespace std;
int n,t;
string s;
int main(){
    scanf("%d%d",&n,&t);
    cin>>s;
    int pos=0;
    for(int i=0;i<n;i++){
        if(s[i]=='.'){
            pos=i;
            break;
        }
    }
    int r=n-1,flag=0,tmp;
    int HHH=0,YYY=0,L=pos+1;
    while(t && r>pos){
        tmp=r;
        HHH=YYY;
        for(int i=L;i<=r;i++){
            int x=s[i]-'0';
            if(x>=5){
                tmp=i;
                YYY++;
                L=i-1;
                break;
            }
        }
        if(HHH==YYY) break;
        t--;
        if(tmp==pos+1){
            flag=1;
            break;
        }
        s[tmp]='0';
        for(int i=tmp-1;i>pos;i--){
            int x=s[i]-'0'+1;
            if(x==10) {
                s[i]='0';
                if(s[i-1]=='.'){
                    flag=1;
                    break;
                }
                x=s[i-1]-'0'+1;
                s[i-1]=x+'0';
            } else {
                s[i]=x+'0';
                break;
            }
        }
        r=tmp-1;
        if(flag) break;
    }
    if(flag){
        flag=0;
        for(int i=pos-1;i>=0;i--){
            if(s[i]!='9'){
                flag=1;
                break;
            }
        }
        if(flag==0){
            cout<<"1";
            for(int i=0;i<pos;i++) cout<<"0";
            cout<<endl;
        } else {
            s[pos-1]=s[pos-1]-'0'+1+'0';
            for(int i=pos-1;i>=0;i--){
                int x=s[i]-'0';
                if(x>=10){
                    s[i-1]=s[i-1]-'0'+1+'0';
                    s[i]=x%10+'0';
                } else {
                   s[i]=x+'0';
                   break;
                }
            }
            for(int i=0;i<=pos-1;i++) cout<<s[i];
            cout<<endl;
        }
    } else {
        while(s[r]=='0' && r>pos) r--;
        if(s[r]=='.') r--;
        for(int i=0;i<=r;i++) cout<<s[i];
        cout<<endl;
        //cout<<tmp<<endl;
    }
    return 0;
}
/*
4 100
1.99
4 100
1.85
3 2
0.2
4 100
1.29
5 100
1.245
4 100
1.22
*/




评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值