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 & %I64u

Description

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

inputoutput
3
10 10 10
33 33 33
2
10 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;
 }

 

郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。