USACO 1.1.2 - Greedy Gift Givers(模拟)

来源:互联网 发布:淘宝申请介入流程 编辑:程序博客网 时间:2024/05/17 07:58

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

题意:
给出n个人,他们每个人要把礼物给谁,最后打印出每个人收到的减去送出的.

解题思路:
较复杂的数据处理,注意的一点是:送出的礼物必须是整数,那么就会送的就可能有剩余.这个时候就要用送出的进行取余.取余的时候要对送的人数取余,而不是对送的人均取余.同时还要考虑除以0的情况.

AC代码:

/*ID:ReckfulLANG:C++TASK:gift1*/struct node{    char name[15];    int give;    int receive;}person[10];#include<iostream>#include<stdlib.h>#include<stdio.h>#include<string.h>using namespace std;int main(){    //freopen("gift1.in","r",stdin);    //freopen("gift1.out","w",stdout);    int n;    scanf("%d",&n);    for(int i = 0;i < n;i++)    {        scanf("%s",person[i].name);        person[i].give = 0;        person[i].receive = 0;    }    int temp_n = n;    while(temp_n--)    {        char giver[15];        scanf("%s",giver);        int index = 0;        for(int i =0;i < n;i++)        {            if(strcmp(person[i].name,giver)==0)            {                index = i;                break;            }        }        int num;        scanf("%d%d",&person[index].give,&num);        int temp_num = num;        if(!person[index].give)        {            while(temp_num--)            {                char temp_name[15];                scanf("%s",temp_name);            }            continue;        }        int ave = person[index].give/num;        person[index].receive += person[index].give%num;        while(temp_num--)        {            char receiver[15];            scanf("%s",receiver);            int index2;            for(int i = 0;i < n;i++)            {                if(strcmp(receiver,person[i].name)==0)                {                    index2 = i;                    break;                }            }            person[index2].receive+=ave;        }    }    for(int i = 0;i < n;i++)    printf("%s %d\n",person[i].name,person[i].receive-person[i].give);    return 0;}
0 0
原创粉丝点击