Chapter 1:2.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
附源代码:
/*
ID: Ritain He
PROG: gift1
LANG: C++
*/
#include<iostream>
#include<fstream>
#include<string>
using namespace std;
struct Friend
{
   string name;
   int initMoney;       //the person's initial money
   int getMoney;        //one's total money,include remains
};
ifstream fin("gift1.in");
ofstream fout("gift1.out");
int main()
{
    Friend *frArr;
    int n,i,give;
   
    fin>>n;
    frArr = new Friend[n];
   
    for(i=0;i<n;i++)
    {//get the data from the file
        fin>>frArr[i].name;
        frArr[i].getMoney = 0;
    }   
   
    string name;
    //int loop = 1;
    for(i=0;i<n;i++)
    {
        int j,money,num,get,gm;
        fin>>name;
        for(give=0;name != frArr[give].name;give++);
       
        fin>>frArr[give].initMoney>>num;        //get the person's initMoney and number of whom he will give gift
       
        if(0 == num)
                continue;
        money = frArr[give].initMoney;
        gm = money/num;
        frArr[give].getMoney = frArr[give].getMoney + money - num * gm;  //calculate the giving gift person's remain money
        //cout<<loop++<<":"<<endl;       
        for(j=0;j<num;j++)
        {//add everyone's get money one by one
            fin>>name;
            for(get=0;name != frArr[get].name;get++);
           
            frArr[get].getMoney += gm;
            //cout<<money/num<<frArr[get].name<<frArr[get].getMoney<<endl;
        }   
    }   
   
    for(i=0;i<n;i++)            //output the resulr
        fout<<frArr[i].name<<" "<<frArr[i].getMoney - frArr[i].initMoney<<endl;
   
    delete[] frArr;
    //system("Pause");
    return 0;  
}

                
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
根据您提供的信息,这是 iqtree 输出的分析结果解读: - IQ-TREE 版本:这是 IQ-TREE 的多核版本 2.2.2.7 COVID-edition,适用于 Linux 64 位系统,构建于 2023 年 6 月 7 日。 - 开发人员:IQ-TREE 的开发团队成员包括 Bui Quang Minh、James Barbetti、Nguyen Lam Tung、Olga Chernomor、Heiko Schmidt、Dominik Schrempf、Michael Woodhams 和 Ly Trong Nhan。 接下来是具体分析结果的解读: - 输入文件名和格式:输入的树文件名为 gene_tree.treefile,格式为 Newick。 - 分析类型和目标:分析类型是基于树的子集大小 k 的根基因谱多样性(Rooted phylogenetic diversity, PD),目标是寻找最大值。 - 搜索算法:检测到使用的搜索算法是贪婪算法(Greedy)。 - 搜索选项:选择了单一最优解(Single optimal set)的搜索选项。 - 树的信息:输入树有 24 个分类单元(taxa)和 46 条分支(branches)。 下面是具体的分析结果: - 对于 k = 4,最优的 PD 得分是 0.894235。 - 最优的 PD 子集包括以下 4 个分类单元(taxa): Dste, Aver, Ddac, Dpar。 - 对应的子树结构为:((Aver:0.212139,((Dste:0.165408,Ddac:0.138331):0.112976,Dpar:0.129989):0.0179965):0.117395)。 其他信息: - 时间使用:分析使用的时间为 4.5e-05 秒(即 0.000045 秒)。 - 完成时间:分析完成的时间为 2023 年 7 月 11 日,晚上 20:52:16。 请注意,以上解读仅基于提供的信息,具体结果的解释可能需要进一步了解相关背景知识。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值