题目描述:

D. Vus the Cossack and Numbers

Vus the Cossack has nn real numbers aiai. It is known that the sum of all numbers is equal to 00. He wants to choose a sequence bb the size of which is nn such that the sum of all numbers is 00 and each bibi is either ⌊ai⌋⌊ai⌋ or ⌈ai⌉⌈ai⌉. In other words, bibi equals aiai rounded up or down. It is not necessary to round to the nearest integer.

For example, if a=[4.58413,1.22491,−2.10517,−3.70387]a=[4.58413,1.22491,−2.10517,−3.70387], then bb can be equal, for example, to [4,2,−2,−4][4,2,−2,−4].

Note that if aiai is an integer, then there is no difference between ⌊ai⌋⌊ai⌋ and ⌈ai⌉⌈ai⌉, bibi will always be equal to aiai.

Help Vus the Cossack find such sequence!

Input

The first line contains one integer nn (1≤n≤1051≤n≤105) — the number of numbers.

Each of the next nn lines contains one real number aiai (|ai|<105|ai|<105). It is guaranteed that each aiai has exactly 55 digits after the decimal point. It is guaranteed that the sum of all the numbers is equal to 00.

Output

In each of the next nn lines, print one integer bibi. For each ii, |ai−bi|<1|ai−bi|<1 must be met.

If there are multiple answers, print any.

Examples

input

4
    4.58413
    1.22491
    -2.10517
    -3.70387

output

4
    2
    -2
    -4

input

5
    -6.32509
    3.30066
    -0.93878
    2.00000
    1.96321

output

-6
    3
    -1
    2
    2

Note

The first example is explained in the legend.

In the second example, we can round the first and fifth numbers up, and the second and third numbers down. We can round the fourth number neither up, nor down.

思路:

要保证取整后和为零,就要看是怎么去上整和下整。

举个例子:1.99 2.01 -4取整应该是2 2 -4,那么我们怎么知道该取多少个上整或下整呢?就先把正数小数部分加起来记为posit,负数的小数部分的绝对值加起来记为negt,。用posit-negt得到的数记为gap,即表示正数的小数部分和负数的小数部分相差是什么。如果是零,那么好了,直接把数组的数取整就可以输出了。如果gap>0,说明这个时候正数的整数部分和是小于负数的正数部分和的绝对值的。因为正数还需要小数部分的补充才能和负数打个平手,同理,gap<0,说明负数整数和小于正数整数和。其实按理说小数部分加起来后应该是个整数的,要不然和不可能是零,但是,狗血的来了,这个时候gap的类型是double,后面再计数时要转换成int,如果gap=2,说明他在计算机表示上接近2,但不能看成2,直接转换成整数竟然可以等于一!佛了。这时候就要用round函数了(见参考文章1)。

然后根据gap的正负,把相应的数进行加减操作,比如gap>0,那就要把正的而且原来不是整数的数加1,<0就把负的数而且原来不是整数的数减一,最后输出。

怎么判断原来a数组的数是不是整数呢?我一开始是按要求来fabs(a[i]-b[i])<1(b[i]为取整后的数,整数下取整,负数上取整)来判断的,事实证明,这不行,我怎么这么天真无邪善良可爱(傻),精度还是有问题。就在刚刚写到这里,我突然意识到了什么,不四fabs(a[i]-b[i])<1,而四fabs(a[i]-b[i]-1)<1和fabs(a[i]-b[i]+1)<1.怎么会这样子滋滋滋滋滋~。好,这样是可以的,然后就可以修改了。最后输出✿✿ヽ(°▽°)ノ✿(真好)。

再提一点,在过程中我竟然发现了-0这样的输出,还是负的,用了ceil返回值是double,应该直接截取了整数部分。联想到浮点数的表示,嗯,这是个负的零,只能接近零,但不是零。这就要看浮点数在计算机中的表示了。如果指数是 0 并且尾数的小数部分是 0,这个数是 ±0(和符号位有关)(具体参见参考文章2)

代码:

 #include <iostream>
#include <cmath>
#define max_n 100005
using namespace std;
int n;
double a[max_n];
int b[max_n];
double posit = ;
double negt = ;
double eps = 10e-;
int main()
{
//printf("%d\n",-2);
cin >> n;
for(int i = ;i<n;i++)
{
cin >> a[i];
if(a[i]>)
{
posit += a[i]-floor(a[i]);
b[i] = floor(a[i]);
}
else if(a[i]<)
{
negt += ceil(a[i])-a[i];
b[i] = ceil(a[i]);
}
}
int gap = round(posit-negt);
//cout << gap << endl;
if(gap>)
{
for(int i = ; i<n&&gap; i++)
{
if(a[i]>&&fabs(a[i]-b[i]-)<)
{
b[i] = b[i]+;
gap--;
}
}
}
else
{
for(int i = ;i<n&&gap;i++)
{
if(a[i]<&&fabs(a[i]-b[i]+)<)
{
b[i] = b[i]-;
gap++;
}
}
}
for(int i = ;i<n;i++)
{
cout << b[i] << endl;
}
return ; }

参考文章:

dangzhangjing97,C语言(C++)中:详解floor函数、ceil函数和round函数,https://blog.csdn.net/dangzhangjing97/article/details/81279862

TwinkleStar0121,浮点数在计算机中的表示,https://blog.csdn.net/jvandc/article/details/81176294

需要清醒,清醒

Codeforces F. Vus the Cossack and Numbers(贪心)的更多相关文章

  1. Codeforces Round #571 (Div. 2)-D. Vus the Cossack and Numbers

    Vus the Cossack has nn real numbers aiai. It is known that the sum of all numbers is equal to 00. He ...

  2. codeforces#571Div2 D---Vus the Cossack and Numbers【贪心】

    题目:http://codeforces.com/contest/1186/problem/D 题意:给定一个大小为$n$的浮点序列,这$n$个数的和为0. 现在对这个序列中的每个数,进行向上取整或向 ...

  3. codeforces 1186C Vus the Cossack and Strings

    题目链接:https://codeforc.es/contest/1186/problem/C 题目大意:xxxxx(自认为讲不清.for instance) 例如:a="01100010& ...

  4. Codeforces F. Maxim and Array(构造贪心)

    题目描述: Maxim and Array time limit per test 2 seconds memory limit per test 256 megabytes input standa ...

  5. Codeforces 1186F - Vus the Cossack and a Graph 模拟乱搞/欧拉回路

    题意:给你一张无向图,要求对这张图进行删边操作,要求删边之后的图的总边数 >= ceil((n + m) / 2), 每个点的度数 >= ceil(deg[i] / 2).(deg[i]是 ...

  6. @codeforces - 1186F@ Vus the Cossack and a Graph

    目录 @description@ @solution@ @accepted code@ @details@ @description@ 给定一个 n 点 m 边的图(n, m<=10^6),记第 ...

  7. CodeForces - 1186 C. Vus the Cossack and Strings (异或)

    Vus the Cossack has two binary strings, that is, strings that consist only of "0" and &quo ...

  8. Vus the Cossack and Strings(Codeforces Round #571 (Div. 2))(大佬的位运算实在是太强了!)

    C. Vus the Cossack and Strings Vus the Cossack has two binary strings, that is, strings that consist ...

  9. E. Vus the Cossack and a Field (求一有规律矩形区域值) (有一结论待证)

    E. Vus the Cossack and a Field (求一有规律矩形区域值) 题意:给出一个原01矩阵,它按照以下规则拓展:向右和下拓展一个相同大小的 0 1 分别和原矩阵对应位置相反的矩阵 ...

随机推荐

  1. 一次升级jar包遇到的空指针异常

    今天自己在升级公司的一个jar后,一直报空指针异常.代码如下 package com.zhuanche.http; import com.alibaba.fastjson.JSON; import c ...

  2. nginx使用与配置入门指南

    这是一篇关于nginx使用与配置的入门指南,但不包括nginx的编译与安装.我假定你知晓如何安装nginx.对大多数Linux系统来说,nginx都已经存在于它们的软件包里,直接使用系统提供的软件管理 ...

  3. [ARM-Linux开发] 嵌入式 linux如何生成ko文件

    hello.c文件如下 驱动程序: #include <Linux/***.h> 是在linux-2.6.29/include/linux下面寻找源文件. #include <asm ...

  4. JavaSE面试题:类初始化和实例初始化等

    类初始化过程 1.一个类要创建实例需要先加载并初始化该类 main方法所在的类需要先加载和初始化 2.一个子类要初始化需要先初始化父类 3.一个类初始化就是执行<clinit>()方法 & ...

  5. STC单片机Flash做EEPROM的代码

    STC官方给出的建议: /***************************************************************Author:Liming*** * @brie ...

  6. JDK提供的并发工具类

    1.CountDownLatch await(),进入等待的状态 countDown(),计数器减一 应用场景:启动三个线程计算,需要对结果进行累加. /** * * CountDownLatch D ...

  7. 两个div并排显示,当浏览器界面缩小时会出现换行

    解决:规定两个子div的父div的宽 <div id="showDataDiv" style="width: 1000px"> <div st ...

  8. java之mybatis之占位符

    1.mybatis中有两种占位符 #{}和 ${}. 2. #{} 占位符是为了获取值,获取的值用在 where 语句后,insert 语句后,update 语句. #{} 获取值,是根据值的名称取值 ...

  9. jquery.pagination.js分页demo

    公用jquery.pagination.js /** * This jQuery plugin displays pagination links inside the selected elemen ...

  10. jQuery.Form.js使用方法

    一.jQuery.Form.js 插件的作用是实现Ajax提交表单. 方法: 1.formSerilize() 用于序列化表单中的数据,并将其自动整理成适合AJAX异步请求的URL地址格式. 2.cl ...