若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。


  • 运维

  • 前端

  • 编程

  • 随笔

  • hust-oj

1496: The Trip

发表于 2017-10-06   |   分类于 HUSTOJ   |   阅读次数 1,325

题目描述

The Trip

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.

输入

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.

输出

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.

样例输入

3
10.00
20.00
30.00
4
15.00
15.01
3.00
3.01
0


样例输出

$10.00
$11.99

参考代码

#include <stdio.h>
int cents[1000];
main() 
{
    int i,j,k,m,n;
    int sum,ave,ove,bal;
    int nove;
    double x;
    for (;;) 
    {
        scanf("%d",&n);
        if (!n) break;
        sum = 0;
        for (i=0;i<n;i++) 
        {
            scanf("%lf",&x);
            cents[i] = 100 * x + 0.1;
            sum += cents[i];
        }
        ave = sum/n;
        ove = 0;
        nove = 0;
        for (i=0;i<n;i++) if (cents[i] > ave) 
        {
            nove++;
            ove += cents[i]-ave;
        }
        if (nove >= sum%n) bal = ove - sum%n; else bal = ove - nove;
        printf("$%0.2lfn",(double)bal/100);
   }
}

解析

暂无

hustoj

发表评论 取消回复

电子邮件地址不会被公开。 必填项已用*标注

*
*


hoxis wechat
著作权归作者所有
站点更新说明
  • 文章目录
  • 站点概览
若是凉夜已成梦

若是凉夜已成梦

青春里 总有些事情要努力去做 总有些梦想要拼命去追。

1904 日志
6 分类
12 标签
RSS
weibo github twitter facebook

友情链接

Dreams孤独患者 Skip 原站点
© 2017 若是凉夜已成梦
Powered by WordPress | 已运行
Theme By NexT.Mist