首页 > 代码库 > http://vjudge.net/contest/view.action?cid=51142#problem/C 精度转换的一道题。。。
http://vjudge.net/contest/view.action?cid=51142#problem/C 精度转换的一道题。。。
C - Get-Together at Den‘s
Time Limit:1000MS Memory Limit:65536KB 64bit IO Format:%I64d & %I64uDescription
Advertising for beer and beer-based beverages must not use images of people and animals. Russia‘s Federal Law “On Advertising”, Ch. 3, Art. 22
Den invited n friends to his home. The friends were glad but first went to Auchan to buy some juice. The ith friend bought ai liters of juice. Then the friends came to Den and sat down to drink the juice. Everybody, including Den, drank the same amount of juice.
When there was no more juice, Misha started complaining about having bought more juice than he had drunk. Den didn‘t want Misha to get upset, so he took one hundred roubles out of his pocket and gave the money to Misha to compensate him for the juice he had bought but hadn‘t drunk himself. Then some more of Den‘s friends started complaining about the same issue. Den had no more money, so he suggested that all the friends who had bought more juice than they had drunk themselves should fairly divide his one hundred roubles between them. How should Den‘s friends divide the money? Assume that Den paid not only for the juice he had drunk but also for all the juice that had been drunk by the people who hadn‘t bought it.
Input
The first line contains the number n of Den‘s friends (2 ≤ n ≤ 100). In the second line you are given the integers a1, …, an (0 ≤ ai ≤ 100) . The sum of all ai is positive.
Output
Output how much of the one hundred roubles the ith friend should take. Round the amounts down to an integer number of roubles.
Sample Input
input | output |
---|---|
310 10 10 | 33 33 33 |
210 0 | 100 0 |
#include <iostream> #include <string.h> #include <stdio.h> using namespace std; int main() { int t; double a[105]; double sum,avg,sum1; while(~scanf("%d",&t)) { sum=0,avg=0,sum1=0; for(int i=0;i<t;i++) { cin>>a[i]; sum+=a[i]; } double avg=sum/(t+1.0); for(int i=0;i<t;i++) { if(a[i]-avg>0) { sum1+=(a[i]-avg); } } for(int i=0;i<t;i++) { if(i!=0) printf(" "); if(a[i]-avg>0) printf("%d", (int)((a[i]-avg)/sum1*100 + 1e-5)); ///cout << floor(100*b[i]/max+0.0001); 这也是OK的 ///printf("%.0lf",(a[i]-avg)/sum1*100 + 1e-5)); 就错 要屎啊 else printf("0"); } printf("\n"); } return 0; }
http://vjudge.net/contest/view.action?cid=51142#problem/C 精度转换的一道题。。。
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。