您的位置:首页 > 其它

Uva 10137 the trip

2013-05-13 16:57 309 查看

Problem A: The Trip

A number of students are members of a club that travels annually to exotic 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 have them share every expense as it occurs. So individuals in the group pay for particular things, like meals, hotels, taxi rides, plane tickets, etc. 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 a cent) all the students' costs.

The Input

Standard input will contain the information for several trips. The information for each trip consists of a line containing a positive integer, n, the number of students on the trip, followed by n lines of input, each containing the amount, in
dollars and cents, spent by a student. 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.

The 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

Output for Sample Input

$10.00
$11.99

 

 

 

 

 


#include <stdio.h>
#define maxsize 1000
int main (int argc, const char * argv[])
 {
    long numOfStudents;
    double total;
    double exchange;
    double equalizedAmount;
    double diff;
    double negativeSum;
    double positiveSum;
 double amountSpent[maxsize];
    int i;
while(scanf("%ld", &numOfStudents), numOfStudents)
{
      
   total =0;
   negativeSum = 0;
   positiveSum = 0;
   for (i = 0; i < numOfStudents; i++)
   {
      scanf("%lf", &amountSpent[i]);
      total += amountSpent[i];
   }
   getchar();
    equalizedAmount = total / numOfStudents;
   for (i = 0; i < numOfStudents; i++)
   {
      diff = (double) (long) ((amountSpent[i] - equalizedAmount) * 100.0) / 100.0;
        if (diff < 0)
  {
          negativeSum += diff;
  }
  else
  {
         positiveSum += diff;
  }
   }
   exchange = (-negativeSum > positiveSum)? -negativeSum : positiveSum;
   printf("$%.2lf\n", exchange);
}
return 0;
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: