Total members 10249 | Gratitudes |It is currently Thu May 17, 2012 8:07 am Login / Join Codemiles


All times are UTC [ DST ]




Post new topic Reply to topic  Quick reply  [ 1 post ] 
Author Question
 Question subject: Greedy Gift Givers
PostPosted: Sat Jun 30, 2007 10:40 pm 
Offline
Mastermind
User avatar

Joined: Tue Mar 27, 2007 10:55 pm
Posts: 2272
Location: Earth
Has thanked: 39 time
Have thanks: 61 time

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.

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();   
}

_________________
Currenlty programming with : java , html , php , and javascript . (OCJP-6 certified )


TOP
 Profile Send private message  
Reply with quote  
Post new topic Reply to topic Quick reply  [ 1 post ] 
Quick reply


  

All times are UTC [ DST ]


Users browsing similar posts

Users browsing this forum: No registered users and 2 guests



Jump to:  
Previous Question | Next Question 




Home
General Talks
Finished Projects
Code Library
Games
Tutorials

Java
C/C++
C-sharp
php
Script
JSP/Servlets
Ajax
ASP/ASP.net
Google SEO
Database
Communications
Phpbb3 styles
Photoshop tutorials
Flash tutorials
Find a job






Powered by phpBB © 2000, 2002, 2005, 2007 phpBB Group
All copyrights reserved to codemiles.com 2007-2011
mileX v1.0 designed by codemiles team