USACO-Greedy Gift Givers(贪婪的送礼者)-Section1.2<2>

【英文原题】

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 some or all of the other friends (although some might be cheap and give to no one). Likewise, each friend might or might not receive money from any or all of the other friends. Your goal is to deduce how much more money each person receives than they give.

The rules for gift-giving are potentially different than you might expect. Each person goes to the bank (or any other source of money) to get 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 7 among 2 friends would be 3 each for the friends with 1 left over – that 1 left over goes into the giver's "account". All the participants' gift accounts start at 0 and are decreased by money given and increased by money received.

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 money each person ends up with.

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 characters, '\n' and '\r'. Do not let your program get trapped by this!

PROGRAM NAME: gift1

INPUT FORMAT

 

Line #Contents
1 A single integer, NP
2..NP+1 Line i+1 contains the name of group member i
NP+2..end NP groups of lines organized like this:
The first line of each group tells the person's name who will be giving gifts.
The second line in the group contains two numbers:
  • The amount of money (in the range 0..2000) to be divided into gifts by the giver
  • NGi (1 ≤ NGi ≤ NP), the number of people to whom the giver will give gifts
If NGi is nonzero, each of the next NGi lines lists the name of a recipient of a gift; recipients are not repeated in a single giver's list.

 

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 starting 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

OUTPUT EXPLANATION

Five names: dave, laura, owen, vick, amr. Let's keep a table of the gives (money) each person 'has':

【中文翻译】

题目描述

对于一群(NP个)要互送礼物的朋友,GY要确定每个人送出的钱比收到的多多少。在这一个问题中,每个人都准备了一些钱来送礼物,而这些钱将会被平均分给那些将收到他的礼物的人。然而,在任何一群朋友中,有些人将送出较多的礼物(可能是因为有较多的朋友),有些人有准备了较多的钱。给出一群朋友,没有人的名字会长于 14 字符,给出每个人将花在送礼上的钱,和将收到他的礼物的人的列表,请确定每个人收到的比送出的钱多的数目。

输入输出格式

输入格式:

第 1 行: 人数NP,2<= NP<=10

第 2 行 到 第NP+1 行:这NP个在组里人的名字一个名字一行

第NP+2到最后:

这里的I段内容是这样组织的:

第一行是将会送出礼物人的名字。

第二行包含二个数字:第一个是原有的钱的数目(在0到2000的范围里),第二个 NGi 是将收到这个人礼物的人的个数 如果 NGi 是非零的, 在下面 NGi 行列出礼物的接受者的名字,一个名字一行。

输出格式:

输出NP行

每行是人的名字和每个人收到的比送出的钱多的数目

输入输出样例

输入样例#1: 复制
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

思路:这道题目是纯粹的模拟题,按照题目的要求来走。
这题可以用结构体来实现(网上有许多用map来解决的,但我学的是C所以没用,不过用map确实方便不少~)。
首先定义结构体变量people,将每个的名字进行存储,然后开始循环:
定位到当前要送礼的这个人(字符串查找),然后将这个人的钱平均分配给那些他要送给的人(即受赠人所拥有的钱增加)
一直这样循环完每一个人……
最后扫描一遍整个结构体,输出每个人的名字和他收到的比送出的钱多的数目(负数表示他“亏了”,正数表示他“赚了”)

代码如下:
 1 #include<stdio.h>
 2 #include<string.h>
 3 struct people//定义结构体people 
 4 {
 5     char name[14];//姓名 
 6     int money;//某人所拥有的钱数 
 7     int list;//要送礼物的列表人数
 8     int give;//送给每个人的钱数  
 9 };
10 struct people p[20];
11 int n,money,list,b; //人数n、某人所拥有的钱数(暂存)、要送礼物的列表人数(暂存)、送给每个人的钱数(暂存) 
12 char man[14];//姓名暂存变量 
13 int moneys(int mo,int friends)//计算送给每个人的钱数 
14 {
15     if(friends==0)
16     {
17         return 0;/*注意判断要送的人数(list)是否为0,否则会出现除数为0而运行错误的情况*/
18     }
19     return mo/friends;//若非0则返回结果(向下取整) 
20 }
21 int main()
22 {
23     scanf("%d",&n);
24     int i,j,k;
25     for(i=0;i<n;i++)
26     {
27         scanf("%s",p[i].name);//输入每个人的明名字 
28     }
29     for(i=0;i<n;i++)
30     {
31         scanf("%s%d %d",man,&money,&list);//先将输入内容暂时存入变量中 
32         for(j=0;j<n;j++)
33         {
34             if(strcmp(man,p[j].name)==0)//搜索姓名相符的变量 
35             {
36                 p[j].list=list;
37                 p[j].give=moneys(money,p[j].list);//将信息存入此结构体变量内 
38                 b=j;//保存此变量的下标,留着送礼时用(因为j的值会变动) 
39             }
40         }
41         for(j=0;j<p[b].list;j++)//往下循环他将送礼的人 
42         {
43             scanf("%s",man);//输入收礼人姓名 
44             for(k=0;k<n;k++)
45             {
46                 if(strcmp(p[k].name,man)==0)//搜索与姓名相符的变量 
47                 {
48                     p[k].money+=p[b].give;//收礼人拥有钱数增加 
49                     p[b].money-=p[b].give;//送礼人钱数对应减少 
50                 }
51             }
52         }
53     }
54     for(i=0;i<n;i++)
55     {
56         printf("%s %d\n",p[i].name,p[i].money);//按要求依次输出信息 。 
57     }
58     return 0;
59 }
posted @ 2018-03-03 21:05  Memoryヾノ战心  阅读(394)  评论(0编辑  收藏  举报