题目地址:https://train.usaco.org/usacoprob2?a=BGOMbIJsisd&S=gift1。

或者我的OJ网站,http://47.110.135.197/problem.php?id=5184。

题目

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

题目分析

题目含义

说了一堆,就是一堆人开始分钱,某个人拿出某个金额 X,分给 N 个指定名字的人,以此类推,直到游戏结束,然后输出最终所有人手上的钱。

算法归类

好吧一道标准的模拟题,没有什么难度。

数据范围

也就是说,最多 10 个人,每次拿出的钱是 2000。题目没有给出最多操作几次,也许这里是本题不够严谨的地方,所以解题的时候尽量开成 long long 的数据类型。

坑点

1、注意分法按照整数。什么意思,A 拿出 100 元分给 3 人,哪么每人分 33 元,也就是说 A 实际是拿出 99 元。

2、要注意最后输出的时候,要按照输入名字顺序输出。我开始第一次实现的时候使用了STL map这个数据结构,但是map是排序的。

3、文件结束如何表示。而不是样例的 0 0 表示结束,是 EOF。

AC参考代码

/*
ID: your_id_here
PROG: gift1
LANG: C++
*/
//Greedy Gift Givers
//https://train.usaco.org/usacoprob2?a=950pAjF03W0&S=gift1
#include <bits/stdc++.h>
using namespace std;struct PAIR {string name;//名字int deposit;//钱
};
const int MAXN = 10;
PAIR data[MAXN] = {};int main() {freopen("gift1.in", "r", stdin);freopen("gift1.out", "w", stdout);int np;cin >> np;for (int i=0; i<np; i++) {cin >> data[i].name;data[i].deposit = 0;}string tmp;int money, num;while (cin >> tmp) {cin >> money >> num;if (0!=money && 0!=num) {int quotient = money / num;//商int remainder = money % num;//余数//找到位置for (int pos=0; pos<np; pos++) {if (tmp==data[pos].name) {data[pos].deposit = data[pos].deposit - money + remainder;break;}}for (int j=0; j<num; j++) {cin >> tmp;for (int pos=0; pos<np; pos++) {if (tmp==data[pos].name) {data[pos].deposit += quotient;break;}}}} else if (0==money && 0!=num) {for (int j=0; j<num; j++) {cin >> tmp;}}}//遍历for (int i=0; i<np; i++) {cout << data[i].name << " " << data[i].deposit << endl;}fclose(stdin);fclose(stdout);return 0;
}

USACO题解——Section 1.2——Greedy Gift Givers相关推荐

  1. USACO Section 1.2 Greedy Gift Givers (简单查找)

    2018-3-25 changed 题目大意就是说我们要互相 " 送钱 " ,一共NP个人,指定某一个人将sum这么多的钱分给num个人,那么这些人每个人多了sum/num,送钱的 ...

  2. USACO Training Section 1.1 贪婪的送礼者Greedy Gift Givers

    P1201 [USACO1.1]贪婪的送礼者Greedy Gift Givers 题目描述 对于一群(NP个)要互送礼物的朋友,GY要确定每个人送出的钱比收到的多多少.在这一个问题中,每个人都准备了一 ...

  3. 贪婪的送礼者Greedy Gift Givers [USACO 1.2]

    贪婪的送礼者Greedy Gift Givers [USACO 1.2]题目描述: 有一群(N个)要互送礼物的朋友,现在要确定每个人送出的钱比收到的钱多多少.每个人都准备了一些钱来送礼物,而这些钱将会 ...

  4. Greedy Gift Givers

    原题地址 Greedy Gift Givers A group of NP (2 ≤ NP ≤ 10) uniquely named friends has decided to exchange g ...

  5. [USACO1.1]贪婪的送礼者Greedy Gift Givers

    题目描述 对于一群(NP个)要互送礼物的朋友,GY要确定每个人送出的钱比收到的多多少.在这一个问题中,每个人都准备了一些钱来送礼物,而这些钱将会被平均分给那些将收到他的礼物的人.然而,在任何一群朋友中 ...

  6. USACO1.1.2 - Greedy Gift Givers

    贪婪礼品送货员 一组NP(2≤NP≤10)唯一命名的朋友决定交换礼物的钱.这些朋友中的每一个可能或可能不会给任何或所有其他朋友一些钱.同样,每个朋友可能或可能不从任何或所有其他朋友接收钱.你在这个问题 ...

  7. YTU ---1402-Greedy Gift Givers 贪婪的送礼者

    1402: 1.1.2 Greedy Gift Givers 贪婪的送礼者 Time Limit: 1 Sec   Memory Limit: 64 MB Submit: 31   Solved: 1 ...

  8. USACO Training Section 1.2 双重回文数 Dual Palindrom

    题目描述 如果一个数从左往右读和从右往左读都是一样,那么这个数就叫做"回文数".例如,12321就是一个回文数,而77778就不是.当然,回文数的首和尾都应是非零的,因此0220就 ...

  9. USACO Training Section 1.1 坏掉的项链Broken Necklace

    题目描述 你有一条由N个红色的,白色的,或蓝色的珠子组成的项链(3<=N<=350),珠子是随意安排的. 这里是 n=29 的二个例子: 第一和第二个珠子在图片中已经被作记号. 图片 A ...

最新文章

  1. JAVA一个项目的路径为_java 得到项目路径
  2. 机器人过程自动化的10个秘密
  3. php实现stripos,php stripos()函数
  4. 【捣鼓】移动硬盘装Ubuntu系统
  5. [MySQL] 索引与性能(3)- 覆盖索引
  6. ACM入门之【高精度】
  7. 数据挖掘常用的方法(分类,回归、聚类、关联规则)
  8. java字符串除法函数,java – 函数式编程:如何处理函数式编程中的异常或它的等价物...
  9. Mysql5.7开启远程
  10. 论文浅尝 | 基于属性embeddings的跨图谱实体对齐
  11. 泡泡玛特上市首日涨79.22%报69港元 总市值953亿港元
  12. Java开发者需要掌握的基础知识
  13. linux测试 scullpipe 驱动
  14. 如何用产品经理思维写一篇商业计划书
  15. python第六周项目答案_Python语言程序设计-课后练习-第6周.pdf
  16. 在delphi中调用chm帮助文件_delphi教程
  17. 利用螺纹钢期货对钢材采购成本做对冲_2020_10_24
  18. Parcel 中文文档 | Parcel 中文网
  19. python这个单词的含义是什么_python style是什么意思
  20. K8S kube-scheduler-master CreateContainerError 问题解决及思路

热门文章

  1. 小猿圈 python学习-细讲数据类型-字典
  2. 禁止腾讯检测HTML代码,微信域名检测API接口的分享以及腾讯屏蔽检测的原理
  3. python快递费用计算_python调用快递鸟api实现查快递
  4. Foxmail签名和模板的使用
  5. js 3d地球飞机环绕飞行动画js特效
  6. 太强了哎 突然发现一个网安神器~
  7. 模仿QQ背景为视频的登录页
  8. 【猿如意】中的『XMind』工具详情介绍
  9. POI文件上传及使用详解
  10. 曲奇的ndnSIM API教程翻译 命名数据网络 NDN ndn simulator