1 / 3
Nov 2010

hi all i tested my prog against alot of tricky test cases , but when i submit i get WA frowning

A group of students are members of a club that travels annually to different locations.
Their destinations in the past have included Indianapolis, Phoenix, Nashville,
Philadelphia, San Jose, and Atlanta. This spring they are planning a trip to Eindhoven.
The group agrees in advance to share expenses equally, but it is not practical to share
every expense as it occurs. Thus individuals in the group pay for particular things, such
as meals, hotels, taxi rides, and plane tickets. After the trip, each student’s expenses
are tallied and money is exchanged so that the net cost to each is the same, to within
one cent. In the past, this money exchange has been tedious and time consuming. Your
job is to compute, from a list of expenses, the minimum amount of money that must
change hands in order to equalize (within one cent) all the students’ costs.
Input
Standard input will contain the information for several trips. Each trip consists of a
line containing a positive integer n denoting the number of students on the trip. This is
followed by n lines of input, each containing the amount spent by a student in dollars
and cents. There are no more than 1000 students and no student spent more than
$10,000.00. A single line containing 0 follows the information for the last trip.
Output
For each trip, output a line stating the total amount of money, in dollars and cents,
that must be exchanged to equalize the students’ costs.
Sample Input
3
10.00
20.00
30.00
4
15.00
15.01
3.00
3.01
0
Sample Output
$10.00
$11.99

#include <iostream>
#include <math.h>
#include <stdlib.h>
using namespace std;
pair<double,double> arr[1001];
int i,j,t;
double mid;
double abs(double i)
{
    return (i>0? i : i*-1);
}
void solve()
{
    double tmp;
    double res=0;
    for(i=0;i<t;i++)
    {
        res+=abs(arr[i].second);
        for(j=i+1;j<t;j++)
        {
            if(!arr[i].second)break;
            if(arr[i].second*arr[j].second < 0)
            {
                tmp=arr[i].second+arr[j].second;
                if(abs(arr[i].second)<=abs(arr[j].second))
                {
                    arr[i].second=0;
                    arr[j].second=tmp;
                }
                else
                {
                    arr[j].second=0;
                    arr[i].second=tmp;
                }
            }
    }
}
int r=res*100;
res=r;
cout<<res/100<<endl;
}
int main()
{
    while(true)
    {
        cin>>t;
        if(!t)return 0;
        mid=0;
        for(i=0;i<t;i++){
            cin>>arr[i].first;
            mid+=arr[i].first;
        }
        mid/=t;
        int r;
        for(i=0;i<t;i++){
            arr[i].second=mid-arr[i].first;
            r=arr[i].second*100;
            arr[i].second=r;
            arr[i].second/=100;
        }
        solve();
    }
}
  • created

    Nov '10
  • last reply

    Nov '10
  • 2

    replies

  • 334

    views

  • 3

    users

If you have stated the problem correctly, then you are getting the wrong answer for the sample input.

Try reading what you've written wink

Suggested Topics

Want to read more? Browse other topics in Off-topic or view latest topics.