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:

The first line in the group tells the person's name who will be giving gifts.
The second line in the group contains two numbers: The initial amount of money (in the range 0..2000) to be divided up into gifts by the giver and then the number of people to whom the giver will give gifts, NGi (0 ≤ NGi ≤ NP-1).
If NGi is nonzero, each of the next NGi lines lists the the name of a recipient of a gift.

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个人,分别是davelauraowenvickamr。

接下来每输入一次操作,都是先输入被分享的那个人,再输入其被瓜分的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的更多相关文章

  1. USACO . Greedy Gift Givers

    Greedy Gift Givers A group of NP (2 ≤ NP ≤ 10) uniquely named friends has decided to exchange gifts ...

  2. 119 - Greedy Gift Givers

     Greedy Gift Givers  The Problem This problem involves determining, for a group of gift-giving frien ...

  3. USACO Section 1.1-2 Greedy Gift Givers

    Greedy Gift Givers 贪婪的送礼者 对于一群(NP个)要互送礼物的朋友,GY要确定每个人送出的钱比收到的多多少. 在这一个问题中,每个人都准备了一些钱来送礼物,而这些钱将会被平均分给那 ...

  4. Section 1.1 Greedy Gift Givers

    Greedy Gift Givers A group of NP (2 ≤ NP ≤ 10) uniquely named friends hasdecided to exchange gifts o ...

  5. Greedy Gift Givers

    Greedy Gift Givers A group of NP (2 ≤ NP ≤ 10) uniquely named friends has decided to exchange gifts ...

  6. 洛谷 P1201 [USACO1.1]贪婪的送礼者Greedy Gift Givers

    贪婪的送礼者Greedy Gift Givers 难度:☆ Code: #include <iostream> #include <cstdio> #include <c ...

  7. 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 ...

  8. Greedy Gift Givers 贪婪的送礼者 USACO 模拟

    1002: 1.1.2 Greedy Gift Givers 贪婪的送礼者 时间限制: 1 Sec  内存限制: 128 MB提交: 9  解决: 9[提交] [状态] [讨论版] [命题人:外部导入 ...

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

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

随机推荐

  1. python字符串处理内置方法一览表

    python字符串处理内置方法一览表   序号 方法及描述 1 capitalize()将字符串的第一个字符转换为大写 2 center(width, fillchar) 返回一个指定的宽度 widt ...

  2. python—查找以XXX结尾的文件

    # 查找电脑所有视频 for cur_dir,dirs,files in os.walk(r'f:'): print('当前正在%s目录下查找'%cur_dir) for f in files:#当前 ...

  3. ASP.NET Core 项目简单实现身份验证及鉴权

    ASP.NET Core 身份验证及鉴权 目录 项目准备 身份验证 定义基本类型和接口 编写验证处理器 实现用户身份验证 权限鉴定 思路 编写过滤器类及相关接口 实现属性注入 实现用户权限鉴定 测试 ...

  4. POJ 2378.Tree Cutting 树形dp 树的重心

    Tree Cutting Time Limit: 1000MS   Memory Limit: 65536K Total Submissions: 4834   Accepted: 2958 Desc ...

  5. Python3 单下划线_双下划线__开头

    Python 中,下划线对解释器有特殊的含义,而且是内建标识符所使用的符号,使用时要多加留意. 在 Python3 的面向对象中,双下划线开头的变量和方法表名为私有变量和私有方法. __private ...

  6. composer 镜像地址

    composer config -g repo.packagist composer https://packagist.composer-proxy.orgcomposer config -g re ...

  7. p2p技术之n2n源码核心简单分析一

    首先在开篇之前介绍下内网打洞原理 场景:一个服务器S1在公网上有一个IP,两个私网机器C1,C2 C1,C2分别由NAT1和NAT2连接到公网,我们需要借助S1将C1,C2建立直接的TCP连接,即由C ...

  8. Linux任务计划命令 :crontab -e

    crond是linux下用来周期性的执行某种任务或等待处理某些事件的一个守护进程,与windows下的计划任务类似,当安装完成操作系统后,默认会安装此服务工具,并且会自动启动crond进程,crond ...

  9. c#串口测试

    软件和代码网盘下载 https://pan.baidu.com/s/1dFrE1pv#list/path=%2F SerialPort 类 https://msdn.microsoft.com/zh- ...

  10. Lambda表达式按字段名字排序

    using System; using System.Collections.Generic; using System.Linq; using System.Linq.Expressions; us ...