Codeforces_718A
1 second
256 megabytes
standard input
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.
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.
Print the maximum grade that Efim can get in t seconds. Do not print trailing zeroes.
6 1
10.245
10.25
6 2
10.245
10.3
3 100
9.2
9.2
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.
题意:给一个小数点后至少有一位的小数(200000),t次四舍五入,只能舍小数点后的数,找最大的。1e9次查询。
模拟题。
之前每次都从小数点开始找第一个大于5的数,最开始一直超时。。。
其实,最开始找一次离小数点最近的大于5的数的位置。
循环中每次进行四舍五入后,从之前找到的那位往前找一个大于5的数,这个数一定是离小数点最近的大于5的数。
#include<iostream>
#include<cstdio>
#include<cstring>
#include<stdlib.h>
#include<algorithm>
#include<cmath>
#include<string> using namespace std; char str[];
int main()
{
int l,t; str[]='';
scanf("%d%d%s",&l,&t,str+); //cout<<str<<endl;
int len=strlen(str)-,tail=len,point;
for(int i=; i<=len; i++)
if(str[i]=='.')
point=i;
int loc=-;
for(int i=len; i>point; i--)
{
if(str[i]>='')
{
loc=i;
}
}
if(loc>)
{
tail=loc;
while(t--)
{
len=tail;
loc=len;
// cout<<"len:"<<len<<endl;
//cout<<len<<"*"<<endl;
if(point>tail)
break;
for(int i=len; i>point; i--)
{
if(str[i]>='')
{
loc=i;
break;
}
} int jin=;
if(str[loc]>='')
jin=;
if(loc==len&&jin==)
break;
//cout<<loc<<"*"<<jin<<endl;
tail=loc-;
if(jin>&&str[tail]+jin<=''&&str[tail]!='.')
{
str[tail]+=jin;
jin=;
}
//cout<<str<<"*"<<endl;
while(jin>)
{
if(str[tail]=='.')
{
tail--;
}
str[tail]+=jin;
if(str[tail]<='')
jin=;
else
{
str[tail]-=;
tail--;
}
}
}
}
//cout<<str[]<<endl;
if(str[]=='')
{
if(tail<point)
tail=point;
for(int i=; i<=tail; i++)
{
if(i==tail&&str[tail]=='.')
continue;
putchar(str[i]);
}
putchar('\n');
}
else
{
if(tail<point)
tail=point;
for(int i=; i<=tail; i++)
{
if(i==tail&&str[tail]=='.')
continue;
putchar(str[i]);
}
putchar('\n');
}
//cout<<str<<endl; return ;
}
Codeforces_718A的更多相关文章
随机推荐
- ArcGIS For Android 的标绘与可视化
参考 1. CSDN 相关博文 2. ArcGIS for Android 离线数据空间分析--叠加分析 3. ArcGIS for Android Runtime100 基本操作(五)——绘制图层和 ...
- C++模板的特化与偏特化
http://cppblog.com/SmartPtr/archive/2007/07/04/27496.html (1) 类模板定义一个栈的类模板,它可以用来容纳不同的数据类型 template & ...
- 读写Word的组件DocX介绍与入门
本文为转载内容: 文章原地址:http://www.cnblogs.com/asxinyu/archive/2013/02/22/2921861.html 开源Word读写组件DocX介绍与入门 阅读 ...
- 一个MySQL-JDBC驱动bug引起的血案……
问题背景 公司是做电商系统的,整个系统搭建在华为云上.系统设计的时候,考虑到后续的用户和订单数量比较大,需要使用一些大数据库的组件.关系型数据库这块,考虑到后续数据量的快速增长,不是直接写入MySQL ...
- Boost Asioserver使用
今天主要想说道说道boost里面的网络通信库怎样设计和使用,由于近期一直在和网络一起工作,大数据处理和机器学习都离不开最后使用网络进行上线部署.先看看所有的源码吧. #include <cstd ...
- vijos - P1302连续自然数和 (公式推导 + python)
P1302连续自然数和 Accepted 标签:[显示标签] 描写叙述 对一个给定的自然数M,求出所有的连续的自然数段(连续个数大于1).这些连续的自然数段中的所有数之和为M. 样例:1998+199 ...
- USRP通信的结构体和常量(上位机、下位机共用)
fw_common.h包括了USRP固件和上位机共用的代码,寄存器地址映射.结构体定义等 #include <stdint.h> /*! * Structs and constants f ...
- C++ 函数模板与类模板(使用 Qt 开发编译环境)
注意:本文中代码均使用 Qt 开发编译环境,如有疑问和建议欢迎随时留言. 模板是 C++ 支持参数化程序设计的工具,通过它可以实现参数多态性.所谓参数多态性,就是将程序所处理的对象的类型参数化,使得一 ...
- 【Codeforces 670C】 Cinema
[题目链接] http://codeforces.com/contest/670/problem/C [算法] 离散化 [代码] #include<bits/stdc++.h> using ...
- 第一周 Leetcode 57. Insert Interval (HARD)
Insert interval 题意简述:给定若干个数轴上的闭区间,保证互不重合且有序,要求插入一个新的区间,并返回新的区间集合,保证有序且互不重合. 只想到了一个线性的解法,所有区间端点,只要被其 ...