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.
3 10.00 20.00 30.00 4 15.00 15.01 3.00 3.01 0
$10.00 $11.99
#include<stdio.h> #include<math.h> #define min(x,y) x<y?x:y int main() { int n; while(~scanf("%d",&n),n) { double a[1005],sum,ave; int i; sum=0; for(i=0;i<n;i++) { scanf("%lf",&a[i]); sum+=a[i]; } ave=round(sum/n*100)/100; double sum1=0,sum2=0; for(i=0;i<n;i++) { if(a[i]>ave) sum1=sum1+a[i]-ave; else sum2=sum2+ave-a[i]; } printf("$%.2lf\n",min(sum1,sum2)); } return 0; }