pc110103 The Trip
The Trip
A group of students are members of a club that travels annually to different locations. Their destinations in the past have included Indianapolis, Phoenix, Nashville, Philadelphia, San Jose, and Atlanta. This spring they are planning a trip to Eindhoven.
The group agrees in advance to share expenses equally, but it is not practical to share every expense as it occurs. Thus individuals in the group pay for particular things, such as meals, hotels, taxi rides, and plane tickets. After the trip, each student's expenses are tallied and money is exchanged so that the net cost to each is the same, to within one cent. In the past, this money exchange has been tedious and time consuming. Your job is to compute, from a list of expenses, the minimum amount of money that must change hands in order to equalize (within one cent) all the students' costs.
Input
Standard input will contain the information for several trips. Each trip consists of a line containing a positive integer n denoting the number of students on the trip. This is followed by n lines of input, each containing the amount spent by a student in dollars and cents. There are no more than 1000 students and no student spent more than $10,000.00. A single line containing 0 follows the information for the last trip.
Output
For each trip, output a line stating the total amount of money, in dollars and cents, that must be exchanged to equalize the students' costs.
Sample Input
3 10.00 20.00 30.00 4 15.00 15.01 3.00 3.01 0
Sample Output
$10.00 $11.99
题意:有n个人去旅行,每个人都花费了一定的钱,现在要平摊,问你至少有多少钱在“交易”,精确到0.01;
解法:本题我是错了很多次了,就是没处理好精度,我发现我对精度问题经常搞错;以后要多多注意。
这题的关键在于知道10.00,在计算机中经常表示为9.99999……所以在处理时要小心;
接下来就是简单的贪心了,首先要知道count = summoney-avemoney *n 是否大于零;把count 转换为整数,count%=n;
说明有count个人是avemoney + 0.01 其他人都是 avemoney 。
代码:

#include<iostream>
#include<algorithm>
#include<cstring>
#include<cstdio>
#define N 1005
using namespace std;
double student[N];
int main()
{
int n;
double sum,ave,ans;
while(cin>>n&&n)
{
ans=sum=ave=0;
int i;
for(i=0;i<n;i++)
{
cin>>student[i];
sum+=student[i];
}
ave=sum/n;
int t;
t=ave*100;
ave=t/100;
t=int((sum+0.0001)*100);
t=t%10;t=t%n;
for(i=0;i<n;i++)
if(student[i]>ave)
{
if(t>0)
{
ans+=(student[i]-ave-0.01);
t--;
}
else ans+=(student[i]-ave);
}
printf("$%.2lf\n",ans);
}
return 0;
}