1.1.4 PROB Greedy Gift Givers
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
===================================================
比如样例,有5个人,分别是dave,laura,owen,vick,amr。
接下来每输入一次操作,都是先输入被分享的那个人,再输入其被瓜分的money数目,以及瓜分他钱的人数num,接下来的num行即是瓜分其钱财的人名
考虑几种非常规情况,特别是money不为0,num为0的时候,此时被瓜分的人不能得到钱,而是全数扣除
常规情况下就是被瓜分的人会失去money总数并增加被瓜分后剩余的(money % num)。
AC代码:
/*
ID: luopengting
PROG: gift1
LANG: C++
*/
#include <iostream>
#include <cstdio>
#include <vector>
using namespace std;
const int maxn = ;
int score[maxn];
int main()
{ freopen("gift1.in", "r", stdin);
freopen("gift1.out", "w", stdout); vector<string> person;
int num, t = , n, money;
string s;
//memset(sum, 0, sizeof(sum));
cin >> n;
for(int i = ; i < n; i++)
{
cin >> s;
person.push_back(s);
score[i] = ;
} for(int k = ; k < n; k++)
{
cin >> s;
cin >> money >> num;
if(money == && num != )
{
for(int i = ; i < num; i++)
{
cin >> s;
}
continue;
}
for(int i = ; i < n; i++)
{
if(person[i] == s)
{
if(num)
{
score[i] += (money % num) - money;
}
else //当money不为0,num为0的时候!!!考虑这个就过了!!
{
score[i] -= money;
}
}
}
for(int i = ; i < num; i++)
{
cin >> s;
for(int i = ; i < n; i++)
{
if(person[i] == s)
{
score[i] += money / num;
}
}
}
}
for(int i = ; i < n; i++)
{
cout << person[i] << " " << score[i] << endl;
}
return ;
}
为了玩map,也写了下面的代码,不过这份代码不能完成题目当中的输出,因为其顺序是字典序排列 纯属娱乐
#include <iostream>
#include <cstdio>
#include <vector>
#include <map>
using namespace std;
int main()
{
#ifdef LUOPENGTING_JUDGE
freopen("gift1.in", "r", stdin);
freopen("gift1,out", "w", stdout);
#endif // LUOPENGTING_JUDGE
map<string, int> person;
map<string, int>::iterator iter;
int num, t = , n, money;
string s;
//memset(sum, 0, sizeof(sum));
cin >> n;
for(int i = ; i < n; i++)
{
cin >> s;
person.insert(pair<string, int>(s, t));
} while(cin >> s)
{
cin >> money >> num;
if(money == && num != )
{
for(int i = ; i < num; i++)
{
cin >> s;
}
continue;
}
if(money == && num == )
{
break;
} iter = person.lower_bound(s);
iter -> second = iter ->second - money + (money % num);
for(int i = ; i < num; i++)
{
cin >> s;
iter = person.lower_bound(s);
iter -> second += (money / num);
}
}
map<string, int>::reverse_iterator it;
for(it = person.rbegin(); it != person.rend(); it++)
{
cout << it->first << " " << it->second<<endl;
}
return ;
}
1.1.4 PROB Greedy Gift Givers的更多相关文章
- USACO . Greedy Gift Givers
Greedy Gift Givers A group of NP (2 ≤ NP ≤ 10) uniquely named friends has decided to exchange gifts ...
- 119 - Greedy Gift Givers
Greedy Gift Givers The Problem This problem involves determining, for a group of gift-giving frien ...
- USACO Section 1.1-2 Greedy Gift Givers
Greedy Gift Givers 贪婪的送礼者 对于一群(NP个)要互送礼物的朋友,GY要确定每个人送出的钱比收到的多多少. 在这一个问题中,每个人都准备了一些钱来送礼物,而这些钱将会被平均分给那 ...
- Section 1.1 Greedy Gift Givers
Greedy Gift Givers A group of NP (2 ≤ NP ≤ 10) uniquely named friends hasdecided to exchange gifts o ...
- Greedy Gift Givers
Greedy Gift Givers A group of NP (2 ≤ NP ≤ 10) uniquely named friends has decided to exchange gifts ...
- 洛谷 P1201 [USACO1.1]贪婪的送礼者Greedy Gift Givers
贪婪的送礼者Greedy Gift Givers 难度:☆ Code: #include <iostream> #include <cstdio> #include <c ...
- usaco training <1.2 Greedy Gift Givers>
题面 Task 'gift1': Greedy Gift Givers A group of NP (2 ≤ NP ≤ 10) uniquely named friends has decided t ...
- Greedy Gift Givers 贪婪的送礼者 USACO 模拟
1002: 1.1.2 Greedy Gift Givers 贪婪的送礼者 时间限制: 1 Sec 内存限制: 128 MB提交: 9 解决: 9[提交] [状态] [讨论版] [命题人:外部导入 ...
- USACO Training Section 1.1 贪婪的送礼者Greedy Gift Givers
P1201 [USACO1.1]贪婪的送礼者Greedy Gift Givers 题目描述 对于一群(NP个)要互送礼物的朋友,GY要确定每个人送出的钱比收到的多多少.在这一个问题中,每个人都准备了一 ...
随机推荐
- 记录-springcloud -mybatis(代码)
代码部分: 1:pom文件 <?xml version="1.0" encoding="UTF-8"?> <project xmlns=&qu ...
- MAC终端如何使用rar和unrar
一.MAC具体安装见下面两个博客分享: Homebrew介绍和使用:https://www.jianshu.com/p/de6f1d2d37bf Mac 压缩 / 解压缩工具解决方案:https:// ...
- [leetcode]68. Text Justification文字对齐
Given an array of words and a width maxWidth, format the text such that each line has exactly maxWid ...
- why?
优点 充分利用多核CPU的计算能力: 方便进行业务拆分,提升应用性能 缺点 上下文切换 注意线程安全,避免死锁
- 关于servelt的相关介绍
1.@WebServlet注解的作用 在Servlet 3.0中,使用@WebServlet注解可实现servlet和url的映射,它告知容器哪些Servlet会提供服务以及额外信息,其作用相当于之前 ...
- opencv关于Mat类中的Scalar()---颜色赋值
这个 CvScalar就是一个可以用来存放4个double数值的数组(O'Reilly的书上写的是4个整型成员):一般用来存放像素值(不一定是灰度值哦)的,最多可以存放4个通道的. typedef s ...
- jQuery on() 方法 为选定已存在元素和未来元素绑定标准事件和自定义事件
很有必要说说jQuery的on方法,这个方法存在大乾坤大奥秘,主要注意两点: 1.为已存在元素和未来元素(动态添加元素)绑定处理函数. 2.自定义一个非标准的事件并绑定处理函数. 定义和用法 on() ...
- jmeter javamail 邮件格式再优化(由详情——>改为统计)
前言:之前扩展的ant—jmeter支持邮件附件形式上传以及邮件内容的html文件格式. 如图: 由于邮件的内容格式是详情信息,也就是说直观的显示的是case,但由于case的增加,邮件内容越来越大! ...
- Oracle 有排序的分页SQL写法
第一种: SELECT * FROM ( SELECT A.*, ROWNUM RN FROM (SELECT * FROM TABLE_NAME) A ) 第二种: SELECT * FROM ( ...
- scrapy 爬取小说
QiushuSpider # -*- coding: utf-8 -*- import scrapy import time from qiushu.items import QiushuItem c ...