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 a i 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 a 1, …, a n (0 ≤ a i ≤ 100) . The sum of all  a i 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
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;
 }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM