`
Simone_chou
  • 浏览: 197193 次
  • 性别: Icon_minigender_2
  • 来自: 广州
社区版块
存档分类
最新评论

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

 

      题意:

      共有NP个人,NP个人轮流分钱。轮流输入分钱人的名字S,输入拥有的钱数M与分的人数N,再依次输入要分给对象的人名(一个N个),分完后分钱人剩下钱数(S%N),被分钱对象分得的钱数为平均数(S/N),算出最后每人剩余的钱数。NP范围为2到10,钱数M是0到2000。

      

      思路:

     1.定义结构体(Name and money),然后用结构体数组来存数据,将NP个人的信息存到数组中。一开始先初始化每个人的钱数都是0再开始统计,统计完后在依次输出人名和钱数;

     2.定义name[20][20]来保存人名,再定义money[20]来保存人对应的钱数,然后跟上面的情况同样处理,要注意的是这里的数字要对应好。

       

     第一次提交时错误的代码:

/*
TASK:gift1
LANG:C
ID:sum-g1
*/
#include<stdio.h>
#include<string.h>

struct person                                  //定义结构体
{
	char name[50];
	int  money;
}a[15];

int main()
{
 FILE *fin =fopen("gift1.in","r");
 FILE *fout=fopen("gift1.out","w");
        int N,i,cash,number,k,s,j;             //N为总共的人数
	char n[50];
	fscanf(fin,"%d",&N);
	for(i=1;i<=N;i++)                      //输入人名,同时对该人的钱数初始化
	  {
	  	fscanf(fin,"%s",n);
	  	strcpy(a[i].name,n);
	  	a[i].money=0;
	  }
	  	   
	for(i=1;i<=N;i++)                
	 {
	  fscanf(fin,"%s",n);                   //输入分钱人
	  for(j=1;j<=N;j++)
	 	 if(!strcmp(a[j].name,n)) break;//找到这个分钱人
	  fscanf(fin,"%d%d",&cash,&number);	//输入分多少钱和分给多少人
if(number==0&&cash==0)  break;	//这里不应该是break的一开始还是没发现是除数作为0情况时的问题...
a[j].money=a[j].money-cash+cash%number;   	      //如果number=0的话作为除数是没有意义的
	  for(k=1;k<=number;k++)          
	   {
		fscanf(fin,"%s",n);             //输入要分给谁
	   	for(s=1;s<=N;s++)               //找到这个人
	   	if(!strcmp(a[s].name,n)) 
        {a[s].money+=(cash/number);break;}     //同理,这里也是
	   }
     }
   
    for(i=1;i<=N;i++)                           //最后输出这人些人分钱后的剩余钱数
     fprintf(fout,"%s %d\n",a[i].name,a[i].money);
    exit(0);                                             
}


 

    Debug:

          一开始没发现是除数问题的时候,一直在死盯着看自己写的代码,所以我决定每进行一步都输出来看看它此刻运行的状态来找出到底是哪里的问题。并且把结构体改成用数组对应的方法来解决这道题。

 

#include<stdio.h>
#include<string.h>
int main()
{
	int N,i,j,give,who,k,l;
	char name[10][10];                           
	char temp[50];
	int  money[10];
	memset(name,0,sizeof(name));
	memset(money,0,sizeof(money));
	scanf("%d",&N);
	for(i=0;i<N;i++)
	 {
	  scanf("%s",name[i]);
	  money[i]=0;
     }
	                 //输入人名并初始化后,进行一次输出查看,发现这里没有问题。
                         //	printf("\n");	
                         //	for(i=0;i<N;i++)
                         //	printf("%s %d\n",name[i],money[i]);
     
     for(i=0;i<N;i++)
     {
     	scanf("%s",temp);
     	j=0;
     	while(strcmp(name[j],temp))  j++;
     	
                         //输入分钱人后,看看能不能正确的找到这个人
                         //    printf("\n%d\n",j);
     	
     	scanf("%d%d",&give,&who);
     	
        if(!give&&!who) money[j]=money[j];
     	if(give&&who)   money[j]=money[j]+give%who-give;
     	if(give&&!who)  money[j]=money[j]-give;
		
         if(who)
              {          //一开始没有红色字体部分
		 for(k=0;k<who;k++)
     	        {
     	 	 l=0;
		 scanf("%s",temp);
     	 	 while(strcmp(temp,name[l])) l++;
     	 	    money[l]=money[l]+give/who;
     	        }
              }

     }
     
     for(i=0;i<N;i++)   //最后一次输出查看总结果,结果却输不出来,故有问题的为下面那部分
      printf("%s %d\n",name[i],money[i]);
      return 0;
}



//最后我还验证了一下是不是真的是除数问题,所以另外写了个简单的代码来测试一下,结果真的是这样
#include<stdio.h>
int main()
{
	int n=0,m=0;
	printf("%d %d\n",n/m,n%m);
}

 

 

 The second times and AC at the end:

/*
TASK:gift1
LANG:C
ID:sum-g1
*/
#include<stdio.h>
#include<string.h>
int main()
{
FILE *fin =fopen("gift1.in","r");
FILE *fout=fopen("gift1.out","w");
        int N,i,j,give,who,k,l;
	char name[10][10];
	char temp[50];
	int  money[10];
	memset(name,0,sizeof(name));
	memset(money,0,sizeof(money));
	fscanf(fin,"%d",&N);
	for(i=0;i<N;i++)
	 {
	  fscanf(fin,"%s",name[i]);
	  money[i]=0;
     }
     for(i=0;i<N;i++)
     {
     	fscanf(fin,"%s",temp);
     	j=0;
     	while(strcmp(name[j],temp))  j++;     	
     	fscanf(fin,"%d%d",&give,&who);
     	if(!give&&!who) money[j]=money[j];
     	if(give&&who)   money[j]=money[j]+give%who-give;
     	if(give&&!who)  money[j]=money[j]-give;
		if(who)
		{
		 for(k=0;k<who;k++)
     	              {
     	 	        l=0;
			fscanf(fin,"%s",temp);
     	 	        while(strcmp(temp,name[l])) l++;
     	 	          money[l]=money[l]+give/who;
     	              }
                }
     }
     for(i=0;i<N;i++)
      fprintf(fout,"%s %d\n",name[i],money[i]);
      exit(0);
}

 

    总结:

      一开始想的是能不能用map,可能是刚学了的关系,想要马上能用到。但是数据存进去之后是自动排好序的,而且题目给出人数的范围最多只有10个,这样子的话时间复杂度也只有0(N^2),也就是100,这样的话,也不需要用到map这种数据结构,所以还是决定不用map。于是试着从简单的办法想起。其实题目不难,但是自己硬是把它给复杂化了,学过的东西乱又杂,还不会运用,用到的时候又是不正确的。但是当你把问题简单化了之后,你还是有可能会做不出来,因为练得少,所以一用起来到处都是Bug,Debug也要花很长的时间,现在犯的都是写很低级的错误,虽然低级却又不容易发现,说明不够细心。

分享到:
评论

相关推荐

    USACO-Greedy-Gift-Givers.rar_greedy gift givers

    在"Greedy Gift Givers"这个题目中,我们面对的是一个贪心算法的应用问题。贪心算法是一种解决问题的策略,它在每一步选择中都采取在当前状态下最好或最优(即最有利)的选择,从而希望导致结果是全局最好或最优的。...

    python基础之综合练习一-37.贪婪的送礼者Greedy Gift Givers-这是你的,这是他的~.py

    知识点: ...通过完成“贪婪的送礼者Greedy Gift Givers”的综合练习,Python初学者可以全面提升编程基本技能,掌握基本算法思想,学会如何设计和实现问题解决方案,同时提高编程思维和问题解决能力。

    USACO官网93题fps格式 OJ题库

    2 [1.1] 贪婪的送礼者Greedy Gift Givers 3 [1.1] 黑色星期五Friday the Thirteenth 4 [1.1] 坏掉的项链 Broken Necklace 5 [1.2] 命名那个数字 Name That Number 6 [1.2] 挤牛奶Milking Cows 7 [1.2] 方块转换 ...

    USACO题解(NOCOW整理版)1

    具体包括了几个不同难度级别的问题,如“Your Ride Is Here”,“Greedy Gift Givers”,“Friday the Thirteenth”和“Broken Necklace”。每个问题的解析都提供了算法思想和解决方案,有的通过简单的数学计算,有...

    1_your ride is here_usaco_TheAnswer_YourRideisHere_

    在提供的压缩包文件名称列表中,我们看到多个源代码文件,如 "1_your ride is here - 副本.py" 和 "2_greedy gift givers.cpp",这些文件很可能是不同参赛者或解题者提交的代码。Python 文件可能对应于 "Your Ride ...

    USACO所有题目题解

    本文主要解析其中三个题目:“Your Ride Is Here (ride)”,“Greedy Gift Givers (gift1)”,以及“Friday the Thirteenth (friday)”。 1. **Your Ride Is Here (ride)**: 这是一个相对简单的问题,属于"ad hoc...

    洛谷训练题 贪婪的送礼者

    对于一群 n 个要互送礼物的朋友,GY 要确定每个人送出的钱比收到的多多少。在这一个问题中,每个人都准备了一些钱来送礼物,而这些钱将会被平均分给那些将收到他的礼物的人。 然而,在任何一群朋友中,有些人将送...

    第1章总结1

    1.1节中的题目主要是模拟问题,例如"Your Ride Is Here"和"Greedy Gift Givers",通过模拟操作实现算法。同时,"Friday the Thirteenth"题目引入了模运算,"Broken Necklace"则涉及到数组的使用。 接着,1.2节重点...

    USACO英汉对照题目

    1.1.1 "Your Ride Is Here" 和 "Greedy Gift Givers" 可能涉及到基本的数据结构和贪心算法。 1.1.3 "Friday the Thirteenth" 可能需要理解日期和时间处理,以及可能的数学计算。 1.1.4 "Broken Necklace" 可能涉及...

    Greedy Snake.zip

    本项目“Greedy Snake.zip”是一个基于Windows 32位汇编语言编写的贪吃蛇游戏,展示了汇编语言在实现游戏逻辑方面的强大能力。下面我们将深入探讨该项目涉及的知识点。 一、汇编语言基础 汇编语言是计算机程序设计...

    Greedy-Snake_贪吃蛇

    贪吃蛇小游戏,闲的无聊可以下来玩玩,哈哈。由于java编写,所以需要 jre 环境噢,电脑装了java的都有此环境。纯手打,java开发,学习开发全流程见 ...

    Greedy Layer-Wise Training

    et al recently introduced a greedy layer wise unsupervised learning algorithm for Deep Belief Networks DBN a generative model with many layers of hidden causal variables In the context of the above ...

    Greedy算法经典问题的解答

    ### Greedy算法经典问题解析 #### 一、Greedy算法概览 Greedy算法是一种简单直观的算法设计策略,它在每一步选择中都采取当前看起来最优的选择,以期望达到全局最优解。这种策略并不总是能得到全局最优解,但在很...

    [C++]Greedy Snake

    2. **二维数组**:在C++中,二维数组常被用来模拟游戏地图。每个元素代表地图上的一个位置,0通常表示空地,非0值可能表示蛇身、食物或其他障碍物。 3. **数组映射成图像**:EasyX是一个C++的图形库,它可以方便地...

    GreedySnake.zip

    本项目"GreedySnake.zip"提供了这样一个简单的Java实现,旨在帮助初学者熟悉Java开发的基本技术和流程。以下是该项目涉及的主要知识点: 1. **Java基础知识**:在Java中编写贪吃蛇游戏,需要对基本语法、类与对象、...

    GREEDY FUNCTION APPROXIMATION: A GRADIENT BOOSTING MACHINE

    ### GREEDY FUNCTION APPROXIMATION: A GRADIENT BOOSTING MACHINE #### 1. 引言与背景 本文探讨了一种新的函数逼近方法——贪心函数逼近法(Greedy Function Approximation, GFA),该方法特别关注梯度提升机...

    Greedy Arithmetic

    对于一个毕业课程设计项目,"Greedy Arithmetic" 可能是将贪心算法应用于解决数学问题,比如求解最大子序列和、最小生成树等问题。在这样的设计中,学生需要理解贪心策略如何指导算法决策,并通过C语言编写代码来...

    USACO题解(NOCOW整理版).doc

    Chapter 1 Section 1.1 Greedy Gift Givers (gift1) 这道题的难度相当于联赛第一题。使用数组 incom 和 outcom 记录每个人的收入和支出,对于送礼人 i,找到他要送给的人 j,inc(incom[j],outcom[i] div n),其中 n...

    greedy_c源程序

    根据提供的文件信息,本文将对“greedy_c源程序”中的关键知识点进行详细的解析与说明。此程序主要涉及了贪心算法(Greedy Algorithm)在C++中的实现,并结合具体的代码示例进行了演示。 ### 一、贪心算法概述 ...

    greedysnake贪吃蛇小游戏

    在这个“greedysnake”项目中,我们将探讨如何使用JavaScript进行游戏开发。 1. **JavaScript基础** JavaScript是一种广泛用于网页和网络应用的脚本语言,它主要负责网页的动态交互。在贪吃蛇游戏中,JavaScript将...

Global site tag (gtag.js) - Google Analytics