Total members 11890 |It is currently Wed Apr 24, 2024 3:32 am Login / Join Codemiles

Java

C/C++

PHP

C#

HTML

CSS

ASP

Javascript

JQuery

AJAX

XSD

Python

Matlab

R Scripts

Weka





A group of NP 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 characters, '\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 ( NP-1).
If NGi is nonzero, each of the next NGi lines lists the the name of a recipient of a gift.

here is solution from ACM programmers :

Code:
/*
 
PROG: gift1
*/

/* A simple program where you have
to follow the problem requirements. */
 

#include <iostream>
#include <fstream>
#include <string>
#include <iomanip>
#include <vector>
#include <math.h>
using namespace std;

int locate(string st,vector<string> &nm)
{
  for (int i=0; i<nm.size(); i++)
    if (st==nm[i]) return i;
  return -1;
}

void main()
{
  fstream fin,fout;
  int i;
  fin.open("gift1.in",ios::in);
  cin=fin;
  fout.open("gift1.out",ios::out);  
  
  int no
;
  cin >> no;
  vector<string> names(no);
  for (i=0; i<no; i++)
    cin >> names[i];

  vector<int> amts(no,0);
  for (i=0; i<no; i++) {
    string giver,taker;
    int amt,nosplit;
    cin >> giver;
    cin >> amt >> nosplit;
    if ((amt!=0) && (nosplit!=0)) {
      int amtsplit=(int)floor(amt/nosplit);
      amts[locate(giver,names)]+=(amt-amtsplit*nosplit)-amt;    
      for 
(int k=0; k<nosplit; k++)
      {
        cin >> taker;
        amts[locate(taker,names)]+=(amtsplit);
      }
    }
  }
 
  for 
(int k=0; k<no; k++)
    fout << names[k] << " " << amts[k] << endl;
  fout.close();    
} 




_________________
M. S. Rakha, Ph.D.
Queen's University
Canada


Author:
Mastermind
User avatar Posts: 2715
Have thanks: 74 time
Post new topic Reply to topic  [ 1 post ] 




Topic Tags

C++ Algorithms
cron





Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team
Codemiles.com is a participant in the Amazon Services LLC Associates Program, an affiliate advertising program designed to provide a means for sites to earn advertising fees by advertising and linking to Amazon.com