usaco training <1.2 Greedy Gift Givers>

题面


Task 'gift1': 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 (0 ≤ 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':

dave laura owen vick amr
0 0 0 0 0
First, 'dave' splits 200 among 'laura', 'owen', and 'vick'. That comes to 66 each, with 2 left over
-200+2 +66 +66 +66 0
-198 66 66 66 0
Second, 'owen' gives 500 to 'dave':
-198+500 66 66-500 66 0
302 66 -434 66 0
Third, 'amr' splits 150 between 'vick' and 'owen':
302 66 -434+75 66+75 -150
302 66 -359 141 -150
Fourth, 'laura' splits 0 between 'amr' and 'vick'; no changes:
302 66 -359 141 -150
Finally, 'vick' gives 0 to no one:
dave laura owen vick amr
302 66 -359 141 -150

题意


  •  给你一些人名NP个
  • 给你每个人将一些钱送给指定的人,钱平均分,剩下的归自己
  • 算每个人最后的剩余钱

思路


  •  简单模拟即可
  • 注意人名和钱的对应要用结构体

 代码


 1 /*
 2  ID: chen.ga1
 3  PROG: gift1
 4  LANG: C++11
 5 */
 6 #include <bits/stdc++.h>
 7 using namespace std;
 8 #define fu(i, l, r) for(int i = l; i <= r; i++)
 9 #define fd(i, l, r) for(int i = l; i >= r; i--)
10 #define ll long long
11 #define N 20 
12 inline int read()
13 {
14     int f = 1, a = 0;
15     char c = getchar();
16     while(c > '9' || c < '0'){ if(c == '-')f = -f; c = getchar(); }
17     while(c <= '9' && c >= '0'){ a = a * 10 + c - '0'; c = getchar(); }
18     return a * f;
19 }
20 int n; 
21 struct pe
22 {
23     string name;
24     int sum;
25 } one[20];
26 int main()
27 {
28     freopen("gift1.in", "r", stdin);
29     freopen("gift1.out", "w", stdout);
30     n = read();
31     fu (i, 1, n) cin >> one[i].name;
32     
33     fu (i, 1, n)
34     {
35         string x; int tmp; cin >> x;
36         fu (j, 1, n) 
37         {
38             if(x == one[j].name)
39             {
40                 tmp = j;
41                 break;
42             }
43         }
44         int a = read();
45         int ng = read();
46         if(ng == 0) continue; 
47         int add = a / ng;
48         one[tmp].sum -= ng * add;
49         fu (k, 1, ng)
50         {
51             cin >> x;
52             fu (j, 1, n) 
53             {
54                 if(x == one[j].name)
55                 {
56                     one[j].sum += add;
57                     break;
58                 }
59             }
60         }
61     }
62     fu (i, 1, n)
63         cout << one[i].name << " " << one[i].sum << endl;
64     return 0;
65 }

猜你喜欢

转载自www.cnblogs.com/hangzz/p/11923206.html