zoukankan      html  css  js  c++  java
  • 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 ' '. This differs from Windows, which ends lines with two charcters, ' ' and ' '. 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)

    5davelauraowenvickamrdave200 3lauraowenvickowen500 1daveamr150 2vickowenlaura0 2amrvickvick0 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 302laura 66owen -359vick 141amr -150


    Submission file Name:  

     1 /*
     2     ID:qhn9992
     3     PROG:gift1
     4     LANG:C++
     5 */
     6 
     7 #include <iostream>
     8 #include <cstdio>
     9 #include <cstring>
    10 
    11 using namespace std;
    12 
    13 struct node
    14 {
    15     char str[20];
    16     int val;
    17 }p[20];
    18 
    19 int main()
    20 {
    21     freopen("gift1.in","r",stdin);
    22     freopen("gift1.out","w",stdout);
    23 
    24     int n;
    25     memset(p,0,sizeof(p));
    26     scanf("%d",&n);
    27     for(int i=0;i<n;i++)
    28     {
    29         scanf("%s",p[i].str);
    30         p[i].val=0;
    31     }
    32 
    33     char name2[20][20];
    34     char name[20];
    35     int money,k;
    36     while(scanf("%s",name)!=EOF)
    37     {
    38         scanf("%d%d",&money,&k);
    39         if(money==0&&k==0) continue;
    40         int pos=-1;
    41         for(int i=0;i<k;i++)
    42         {
    43             scanf("%s",name2[i]);
    44         }
    45         for(int j=0;j<n;j++)
    46         {
    47             if(strcmp(name,p[j].str)==0)
    48             {
    49                 pos=j;
    50                 break;
    51             }
    52         }
    53 
    54         p[pos].val-=money/k*k;
    55 
    56         pos=-1;
    57 
    58         for(int i=0;i<k;i++)
    59         {
    60             pos=-1;
    61             for(int j=0;j<n;j++)
    62             {
    63                 if(strcmp(name2[i],p[j].str)==0)
    64                 {
    65                     pos=j;
    66                     break;
    67                 }
    68             }
    69             p[pos].val+=money/k;
    70         }
    71     }
    72 
    73     for(int i=0;i<n;i++)
    74     {
    75         printf("%s %d
    ",p[i].str,p[i].val);
    76     }
    77 
    78     return 0;
    79 }
  • 相关阅读:
    ES6 新特性
    基于.NET平台常用的框架整理
    你可能不知道的一些JavaScript 奇技淫巧
    js中apply方法的使用
    数据库中字段类型对应C#中的数据类型
    C# Socket SSL通讯笔记
    Media Types
    JS使用模板快速填充HTML控件数据 --- 自己写组件(0)
    FastDFS的配置、部署与API使用解读(8)FastDFS多种文件上传接口详解
    FastDFS的配置、部署与API使用解读(7)Nginx的FastDFS模块
  • 原文地址:https://www.cnblogs.com/CKboss/p/3276882.html
Copyright © 2011-2022 走看看