Greedy Gift Givers
A group of NP (2 ≤ NP ≤ 10) uniquely named friends has decided to exchange gifts of money. Each of these friends might or might not give some money to any or all of the other friends. Likewise, each friend might or might not receive money from any or all of the other friends. Your goal in this problem is to deduce how much more money each person gives than they receive.
The rules for gift-giving are potentially different than you might expect. Each person sets aside a certain amount of money to give and divides this money evenly among all those to whom he or she is giving a gift. No fractional money is available, so dividing 3 among 2 friends would be 1 each for the friends with 1 left over -- that 1 left over stays in the giver's "account".
In any group of friends, some people are more giving than others (or at least may have more acquaintances) and some people have more money than others.
Given a group of friends, no one of whom has a name longer than 14 characters, the money each person in the group spends on gifts, and a (sub)list of friends to whom each person gives gifts, determine how much more (or less) each person in the group gives than they receive.
IMPORTANT NOTE
The grader machine is a Linux machine that uses standard Unix conventions: end of line is a single character often known as '\n'. This differs from Windows, which ends lines with two charcters, '\n' and '\r'. Do not let your program get trapped by this!
PROGRAM NAME: gift1
INPUT FORMAT
Line 1: | The single integer, NP | |||
Lines 2..NP+1: | Each line contains the name of a group member | |||
Lines NP+2..end: | NP groups of lines organized like this:
|
SAMPLE INPUT (file gift1.in)
5 dave laura owen vick amr dave 200 3 laura owen vick owen 500 1 dave amr 150 2 vick owen laura 0 2 amr vick vick 0 0
OUTPUT FORMAT
The output is NP lines, each with the name of a person followed by a single blank followed by the net gain or loss (final_money_value - initial_money_value) for that person. The names should be printed in the same order they appear on line 2 of the input.
All gifts are integers. Each person gives the same integer amount of money to each friend to whom any money is given, and gives as much as possible that meets this constraint. Any money not given is kept by the giver.
SAMPLE OUTPUT (file gift1.out)
dave 302 laura 66 owen -359 vick 141 amr -150
题解:纯模拟,但是要注意钱均分的时候被0除的问题,所以先预处理一下,r=n>0?money/n:0;
1 /* 2 ID:spcjv51 3 PROG:gift1 4 LANG:C 5 */ 6 #include<stdio.h> 7 #include<string.h> 8 int main(void) 9 { 10 FILE *fin=fopen("gift1.in","r"); 11 FILE *fout=fopen("gift1.out","w"); 12 char name[10][14],mm[14]; 13 int inout[11]; 14 int i,j,k,m,n,sum,r; 15 memset(inout,0,sizeof(inout)); 16 fscanf(fin,"%d",&n); 17 for(i=0; i<n; i++) 18 fscanf(fin,"%s",name[i]); 19 for(i=0; i<n; i++) 20 { 21 fscanf(fin,"%s",mm); 22 fscanf(fin,"%d%d",&sum,&m); 23 j=0; 24 if(m==0) r=0; 25 else 26 r=sum/m; 27 while(strcmp(mm,name[j])) j++; 28 inout[j]-=r*m; 29 while(m--) 30 { 31 fscanf(fin,"%s",mm); 32 j=0; 33 while(strcmp(mm,name[j])) j++; 34 inout[j]+=r; 35 36 37 } 38 39 } 40 for(i=0; i<n; i++) 41 fprintf(fout,"%s %d\n",name[i],inout[i]); 42 fclose(fin); 43 fclose(fout); 44 45 46 return 0; 47 }