• 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
    View Code
     1 /*
    2 ID:10239512
    3 PROG:gift1
    4 LANG:C++
    5 */
    6
    7 #include<iostream>
    8 #include<fstream>
    9 #include<string>
    10 using namespace std;
    11
    12 ifstream fin("gift1.in");
    13 ofstream fout("gift1.out");
    14
    15 typedef struct {
    16 string s;
    17 int money;
    18 }Str;
    19
    20 Str a[11];int n;
    21
    22 int find(string s)
    23 {
    24 int i,k;
    25 k=s.size();
    26 for(i=1;i<=n;i++)
    27 {
    28 int j,t=0;
    29 j=a[i].s.size();
    30 if(k==j)
    31 for(t=0;t<k;t++)
    32 if(a[i].s[t]!=s[t]) break;
    33 if(t==k) return i;
    34 }
    35
    36 }
    37
    38 int main()
    39 {
    40 int i,j,k;
    41 fin>>n;
    42 for(i=1;i<=n;i++)
    43 {fin>>a[i].s;a[i].money=0;}
    44
    45 for(i=1;i<=n;i++)
    46 {
    47 string name;
    48 fin>>name;
    49 int q,w;
    50 k=find(name);
    51 // cout<<a[k].s<<endl;
    52 fin>>q>>w;
    53 if(w==0) {a[k].money+=q;continue;}
    54
    55 a[k].money-=q-q%w;//cout<<a[j].s<<" "<<a[j].money<<endl;
    56
    57 for(j=1;j<=w;j++)
    58 {
    59 string r;
    60 fin>>r;
    61 a[find(r)].money+=q/w;
    62 // cout<<a[find(r)].s<<" "<<a[find(r)].money<<endl;
    63 }
    64 }
    65
    66 for(i=1;i<=n;i++)
    67 fout<<a[i].s<<" "<<a[i].money<<"\n";
    68 // system("pause");
    69 return 0;
    70
    71 }
    
    
    
    
  • 相关阅读:
    30行js让你的rem弹性布局适配所有分辨率(含竖屏适配)(转载)
    JavaScript事件流原理解析
    Java中this和super的用法和区别
    Java多态面试题案例几解题思路
    Java多态的向上转型和向下转型
    Java方法的重载和重写
    Java冒泡具体的原理,以及下标的变化
    Java中的冒泡排序和选择排序
    使用Java实现对一个数组的增删改查以及初始化
    Java中构造函数传参数在基本数据类型和引用类型之间的区别
  • 原文地址:https://www.cnblogs.com/noip/p/2368664.html
Copyright © 2020-2023  润新知