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要确定每个人送出的钱比收到的多多少.在这一个问题中,每个人都准备了一 ...
随机推荐
- POJ-3159.Candies.(差分约束 + Spfa)
Candies Time Limit: 1500MS Memory Limit: 131072K Total Submissions: 40407 Accepted: 11367 Descri ...
- 在Laravel项目中遇到的一些问题
1. 控制器名字要跟控制器类名保持一致(当保存某个版本的文件时,我通常喜欢复制一份并重命名,这时候重命名的文件的类名并没有改变,着往往回影响结果,却一直找不出错在哪里),在备份的时候应该新建一个文件夹 ...
- 微信小程序开发——点击防重的解决方案
对于一些涉及后端接口请求的单击事件,不论后端是否做了请求限制,前端还是有必要进行点击防重处理的. 这样既能减少对服务器端的压力,也能有效防止因重复请求而造成一些不可预期的异常. 尤其是接口请求结果处理 ...
- django xadmin拓展User模型
django提供四种拓展模型的方法: 1.代理模型 2.Profile拓展模型User 3.AbstractBaseUser拓展模型User 4.AbstractUser拓展模型 之前想通过第四种方法 ...
- crm开发之用户ModelForm定制和密码加密
写了这么多的定制 功能.终于可以定制一下了!因为是 stark 和 rbac 两个组建. 一起使用. 所以在这里,再记录一下.需要注意的点: 先放出 目录结构: 先从 stark 开始.使用star ...
- CentOS7 安装VNC
系统环境:CentOS Linux release 7.6.1810Kernel:3.10.0-957.el7.x86_64系统现状:最小化安装,没有安装任何图形支持软件 安装图形化支持 不建议安装G ...
- js对象属性 通过点(.) 和 方括号([]) 的不同之处
// js对象属性 通过点(.) 和 方括号([]) 的不同之处 // 1.点操作符: 静态的.右侧必须是一个以属性名称命名的简单标识符.属性名用一个标识符来表示.标识符必须直接出现再js ...
- 对DOM,SAX,JDOM,DOM4J四种方法解析XML文件的分析
1.DOM 与平台无关的官方解析方式 DOM是一次性把xml文件加载到内存中,形成一个节点树 对内存有要求 2.SAX java提供的基于事件驱动的解析方式 每次遇到一个标签,会触发相应的事件方法 3 ...
- bittorrent 学习(二) LOG日志和peer管理连接
代码中的log.h log.c比较简单 void logcmd() 记录命令 int logfile();运行日志的记录 int init_logfile() 开启log文件 源码比较清晰也很简单. ...
- ibatis中的resultMap
优点: resultMap可以实现一种功能 当你是1对多 这种多张表查询的时候 你没办法 通过表连接来实现一个集合设置到一个实例里,但是通过resultMap里可以做到 根据关联的字段 查询到一个集合 ...