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要确定每个人送出的钱比收到的多多少.在这一个问题中,每个人都准备了一 ...
随机推荐
- df命令,du命令,磁盘分区
df 命令 功能:用来检查linux的文件系统的磁盘空间占用情况 1. df -h 2. 以innode节点数量显示磁盘空间占用情况 df -ih 3. 列出文件系统类型 df -Th du 命令 功 ...
- 【Android端】【日志收集上报SDK相关内容测试的方案梳理总结】
测试方案: 主要从几个方面关注,功能 性能 服务端策略(目前所有的这些上报收集等都会通过开关的精细化,通过接口方式将信息返回给APP端,APP端根据相关内容进行上报,因此基于此的上报机制及收集机制都需 ...
- Android Studio 的 build 过程
如图, 编译器将源代码(包括 Application Module 及其所依赖的所有 Library 源代码)转换成 DEX(Dalvik Executable)文件(其中包括运行在 Android ...
- ubuntu16.04安装Navicate
1. http://download2.navicat.com/download/navicat100_mysql_en.tar.gz 2. tar -zxvf /home/rain/dow ...
- 重温IO
IO就是输入输出,输出流可以理解为向目标写入数据,输入流可以理解为从源地址读取.流是一组有序的数据序列. 输入流 输出流 字节流 InputStream OutputStream 字符流 Read ...
- centos7 使用ss和Privoxy 实现命令行访问google
1.更新yum 这里可能更新时间有点长,,稳住~别急 yum -y upgrade 2.安装 epel-release 这个必须先安装,因为: python-pip 和 privoxy 都在EPEL源 ...
- docker 删除所有退出的容器
方法一: #显示所有的容器,过滤出Exited状态的容器,取出这些容器的ID, sudo docker ps -a|grep Exited|awk '{print $1}' #查询所有的容器,过滤出E ...
- Swoole addProcess的使用
addProcess函数 是添加一个用户自定义的工作进程.这个有什么用呢?服务在启动后,可以用于监控.上报或者其他特殊的任务. 注意这个添加的进程是被manager进程管理的.如果这个添加的用户进程经 ...
- 创建服务的注册与发现 Eureka (四)
一.eureka注册中心 1.创建一个工程 工程名:microservicecloud-eureka-7001 2.向pom文件中增加如下: <dependencies> <!--e ...
- iOS.mach_msg_trap()
mach_msg_trap() 1. mach_msg() mach_msg_trap() " > The Debugger window shows the calling stac ...