Codeforces Round #204 (Div. 1) A. Jeff and Rounding

來源:互聯網
上載者:User

A. Jeff and Roundingtime limit per test1 secondmemory limit per test256 megabytesinputstandard inputoutputstandard output

 real numbers a, a, ..., an as a birthday present. The boy hates non-integer numbers, so he decided to slightly "adjust" the numbers he's got. Namely, Jeff consecutively executes n operations, each of them goes as follows:

     and j i ≠  j) that haven't been chosen yet;
  • i to the nearest integer that isn't more than ai (assign to ai: ai ⌋);
  • j to the nearest integer that isn't less than aj (assign to aj: aj ⌉).

Input

 n ≤ 2000). The next line contains n real numbers a, a, , an ai ≤ 10000), given with exactly three digits after the decimal point. The numbers are separated by spaces.

Output

Sample test(s)input

output
input
output
Note

 = 1, j = 4), i = 2, j = 3), i = 5, j = 6). In this case, the difference will equal .

#include <stdio.h>#include <iostream>#include <math.h>#include <string.h>using namespace std;int main (){    int n,s1,s2,i;    while(scanf("%d",&n)!=EOF){        double sum,x;        for(i=0,s1=0,s2=0,sum=0;i<n+n;i++){            scanf("%lf",&x);            int temp=(int)x;            x=x-(double)temp;            if(x!=0)            sum+=x,s1++;            else s2++;        }        int k=min(s1,n);        double ans=100000000.0;        for(i=0;i<=k;i++){            if(i+s2>=n){            ans=min(ans,fabs(sum-i*1.0));            }        }        printf("%.3f\n",ans);    }    return 0;}


相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.