码迷,mamicode.com
首页 > 其他好文 > 详细

1.1.2 Greedy Gift Givers

时间:2016-01-23 18:01:48      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:

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:

The first line in the group tells the person‘s name who will be giving gifts.

The second line in the group contains two numbers: The initial amount of money (in the range 0..2000) to be divided up into gifts by the giver and then the number of people to whom the giver will give gifts, NGi (0 ≤ NGi ≤ NP-1).

If NGi is nonzero, each of the next NGi lines lists the the name of a recipient of a gift.

 

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

 

代码:

 1 #include <iostream>
 2 #include <cstdio>
 3 #include <cstring>
 4 #include <string>
 5 using namespace std;
 6 int n,a,b;
 7 char t[15],f[15];
 8 struct P
 9 {
10     char name[15];
11     long long sum;
12 }s[15];
13 
14 int find(char *p)
15 {
16     for(int i=1;i<=n;i++){
17         if(!strcmp(p,s[i].name)){
18             return i;
19         }
20     }
21 }
22 
23 int main()
24 {
25     freopen("gift1.in","r",stdin);
26     freopen("gift1.out","w",stdout);
27     cin>>n;
28     getchar();
29     for(int i=1;i<=n;i++){
30         s[i].sum=0;
31         scanf("%s",s[i].name);
32     }
33     while(~scanf("%s",t)){
34         scanf("%d %d",&a,&b);
35         if(!b){continue;}
36         int ave=a/b;
37         s[find(t)].sum-=ave*b;
38         while(b--){
39             scanf("%s",f);
40             s[find(f)].sum+=ave;
41         }
42     }
43     for(int i=1;i<=n;i++){
44         cout<<s[i].name<<" "<<s[i].sum<<endl;
45     }
46     return 0;
47 }

 

1.1.2 Greedy Gift Givers

标签:

原文地址:http://www.cnblogs.com/shenyw/p/5153354.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!