USACO天梯--Greedy Gift Givers

2023-10-13 03:48
文章标签 天梯 usaco gift greedy givers

本文主要是介绍USACO天梯--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.


SAMPLE INPUT (file gift1.in)

5------/*朋友的数目*/
dave--------/*以下5行是朋友的名字*/
laura
owen
vick
amr
dave----------------------/*给礼物的人的姓名*/
200 3------------------/*礼物的总价值   要分礼物的人数*/
laura----------------------/*以下3行为得到礼物的人的姓名*/          /*下面格式就不再叙述,同上*/
owen
vick
owen----------------------/*给礼物的人的姓名*/
500 1-------------/*礼物的总价值   要分礼物的人数*/
dave
amr
150 2
vick
owen
laura
0 2
amr
vick
vick
0 0

SAMPLE OUTPUT (file gift1.out)

dave 302
laura 66
owen -359
vick 141
amr -150
 
这是一道很常规的模拟题,难度也就可能在NOIP的Day1第一题难度,这里要注意的是文件的读入读取操作,同时注意对应每个人的支出与获得。
题目注意:dave最后为什么是302的原因:
200分三个人不能整分,199也不行,198可以整分。所以支出198,再从amr那里得到500,有500-198=302.
代码如下:
/*
ID:wang ming
PROG:gift1
LANG:C++
*/
#include<iostream>
#include<stdio.h>
#include<string.h>
using namespace std;
int main()
{FILE *fin=fopen("gift1.in","r");FILE *fout=fopen("gift1.out","w");char friends[10][15],giver[10][15],list[10][15];int friends1[10]={0};int NP,i,j,k,l,m,n,z,ll,num,money;                                /*朋友的数量*/fscanf(fin,"%d",&NP);for(i=0;i<NP;i++)                  /*读入朋友名单*/{fscanf(fin,"%s",&friends[i]);/*把朋友的钱初始清0*/}/* for(i=0;i<NP;i++)cout<<friends[i]<<" "<<friends1[i]<<endl;*/for(i=0;i<NP;i++){fscanf(fin,"%s",&giver[i]);                                /*赠送朋友的数量*/fscanf(fin,"%d%d",&money,&num);if(num!=0){for(n=0;n<NP;n++){if(strcmp(friends[n],giver[i])==0)friends1[n]-=(money-money%num);}for(m=0;m<num;m++){fscanf(fin,"%s",&list[m]);for(n=0;n<NP;n++)if(strcmp(friends[n],list[m])==0)friends1[n]+=(money-money%num)/num;} }}for(ll=0;ll<NP;ll++)fprintf(fout,"%s %d\n",friends[ll],friends1[ll]);return 0;
}


这篇关于USACO天梯--Greedy Gift Givers的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/200547

相关文章

usaco 1.3 Prime Cryptarithm(简单哈希表暴搜剪枝)

思路: 1. 用一个 hash[ ] 数组存放输入的数字,令 hash[ tmp ]=1 。 2. 一个自定义函数 check( ) ,检查各位是否为输入的数字。 3. 暴搜。第一行数从 100到999,第二行数从 10到99。 4. 剪枝。 代码: /*ID: who jayLANG: C++TASK: crypt1*/#include<stdio.h>bool h

usaco 1.3 Calf Flac(暴搜)

思路是暴搜。 需要注意的地方是输入的方法,以及输出时的换行。 代码: /*ID: who jayLANG: C++TASK: calfflac*/#include<stdio.h>#include<string.h>#include<math.h>int main(){freopen("calfflac.in","r",stdin);freopen("calfflac.ou

usaco 1.3 Barn Repair(贪心)

思路:用上M块木板时有 M-1 个间隙。目标是让总间隙最大。将相邻两个有牛的牛棚之间间隔的牛棚数排序,选取最大的M-1个作为间隙,其余地方用木板盖住。 做法: 1.若,板(M) 的数目大于或等于 牛棚中有牛的数目(C),则 目测 给每个牛牛发一个板就为最小的需求~ 2.否则,先对 牛牛们的门牌号排序,然后 用一个数组 blank[ ] 记录两门牌号之间的距离,然后 用数组 an

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

usaco 1.2 Palindromic Squares(进制转化)

考察进制转化 注意一些细节就可以了 直接上代码: /*ID: who jayLANG: C++TASK: palsquare*/#include<stdio.h>int x[20],xlen,y[20],ylen,B;void change(int n){int m;m=n;xlen=0;while(m){x[++xlen]=m%B;m/=B;}m=n*n;ylen=0;whi

usaco 1.2 Name That Number(数字字母转化)

巧妙的利用code[b[0]-'A'] 将字符ABC...Z转换为数字 需要注意的是重新开一个数组 c [ ] 存储字符串 应人为的在末尾附上 ‘ \ 0 ’ 详见代码: /*ID: who jayLANG: C++TASK: namenum*/#include<stdio.h>#include<string.h>int main(){FILE *fin = fopen (

usaco 1.2 Milking Cows(类hash表)

第一种思路被卡了时间 到第二种思路的时候就觉得第一种思路太坑爹了 代码又长又臭还超时!! 第一种思路:我不知道为什么最后一组数据会被卡 超时超了0.2s左右 大概想法是 快排加一个遍历 先将开始时间按升序排好 然后开始遍历比较 1 若 下一个开始beg[i] 小于 tem_end 则说明本组数据与上组数据是在连续的一个区间 取max( ed[i],tem_end ) 2 反之 这个

usaco 1.2 Transformations(模拟)

我的做法就是一个一个情况枚举出来 注意计算公式: ( 变换后的矩阵记为C) 顺时针旋转90°:C[i] [j]=A[n-j-1] [i] (旋转180°和270° 可以多转几个九十度来推) 对称:C[i] [n-j-1]=A[i] [j] 代码有点长 。。。 /*ID: who jayLANG: C++TASK: transform*/#include<

usaco 1.1 Broken Necklace(DP)

直接上代码 接触的第一道dp ps.大概的思路就是 先从左往右用一个数组在每个点记下蓝或黑的个数 再从右到左算一遍 最后取出最大的即可 核心语句在于: 如果 str[i] = 'r'  ,   rl[i]=rl[i-1]+1, bl[i]=0 如果 str[i] = 'b' ,  bl[i]=bl[i-1]+1, rl[i]=0 如果 str[i] = 'w',  bl[i]=b

炮弹【USACO】

题目背景 时/空限制:1s / 64MB 题目描述 贝茜已经精通了变成炮弹并沿着长度为 N 的数轴弹跳的艺术,数轴上的位置从左到右编号为 1,2,…,N 。 她从某个整数位置 S 开始,以 1 的起始能量向右弹跳。 如果贝茜的能量为 k ,则她将弹跳至距当前位置向前距离 k 处进行下一次弹跳。 从 1 到 N 的每个整数位置上均有炮击目标或跳板。 每个炮击目标和跳板都有一个在 0 到