题目大意:n个学生去旅行,旅行中每个学生先垫付,最后平摊所有费用,多退少补,并且支出差距控制在1分钱以内,求最小的交易金额。


                                                      @2013-8-16

  以前在zoj做过,把原来的代码直接提交了,虽然AC了,可是记得原来有问题,再一看确实感觉有问题,竟然AC了...然后就自己重写,写完之后总是WA,就放下了,过一段时间在看,再改,提交,仍是WA,太打击人了,不算难的一道题把我虐成这样...今天看World of Seven上的解法时猛然醒悟,自己一直在纠结精度方面的问题,却没发现在向下截取aver时转换成int后直接除100,变成了整数的除法了...只能无语了...

  自己的思路就是求平均数后向下截取,然后用 总金额-平均数*n 得到少的金额,对每人的花费进行排序,少的金额就通过让后面的人多拿一美分补上。 

 #include <stdio.h>
#include <stdlib.h>
#define MAXN 1010 int cmp(const void *_a, const void *_b)
{
double *a = (double*)_a;
double *b = (double*)_b;
return *a - *b;
} int main(void)
{
#ifdef LOCAL
freopen("in", "r", stdin);
#endif
int n, i, p;
double aver, sum, exchange;
double cost[MAXN];
while (scanf("%d", &n) != EOF)
{
if (n == ) break;
sum = ;
for (i = ; i < n; i++)
{
scanf("%lf", &cost[i]);
sum += cost[i];
}
aver = sum / n;
aver = (int)(aver*)/100.0; /* floor the aver */
exchange = ;
p = (int)((sum-aver*n)/0.01+0.1);
qsort(cost, n, sizeof(double), cmp);
for (i = n-; i >= n-p; i--)
if (cost[i] > aver+0.01)
exchange += cost[i]-(aver+0.01);
for (i = n-p-; i >= ; i--)
if (cost[i] > aver)
exchange += cost[i]-aver;
printf("$%.2lf\n", exchange);
}
return ;
}

  这个题原来留了好几份代码,现在看看也能看出一些东西,从最初的用c自己用选择排序进行排序到后来用qsort函数排序,到现在用c++的sort,以及代码风格的一些小小改进,发现自己也不是毫无变化了:D,不过长进的也就这些罢了,算法方面还是没什么长进 -_-||

  网上流行另一个版本,World of Seven 上如下描述:

  The problem with this problem may be related to precision error. Here is solution by Neilor:

  double highx = (int)((total/n+0.0099)*100);
  double lowx = (int)((total/n)*100);
  highx /= 100;
  lowx /= 100;
  Where total is the total sum of the money and n is the number of students.

  Then, test each student money if is > than highx or < than lowx, accumulate
(student[i]-highx) or (lowx-students[i]), respectively.
  Then, output the variable that have the bigger value.

  不理解为什么可以这样做,也许某天就顿悟了呢?:D   

UVa 10137 & ZOJ 1874 The Trip的更多相关文章

  1. UVa 706 & ZOJ 1146 LC-Display

    题目大意:给你一个数字n和字体大小s,输出数字的液晶显示.直接模拟,代码如下: #include <stdio.h> void draw(int n,int s,int row) { in ...

  2. zoj 1874 水题,输出格式大坑

    Primary Arithmetic Time Limit: 2 Seconds      Memory Limit: 65536 KB Children are taught to add mult ...

  3. 详解OJ(Online Judge)中PHP代码的提交方法及要点【举例:ZOJ 1001 (A + B Problem)】

    详解OJ(Online Judge)中PHP代码的提交方法及要点 Introduction of How to submit PHP code to Online Judge Systems  Int ...

  4. 通过vjudge刷Uva的题目(解决Uva网站打开慢的问题)

    最近在跟着算法竞赛入门经典刷题,发现Uva网站打开超级慢,进个主页面都需要好几秒.后来发现可以通过vjudge网站刷Uva的题目,很是方便,在这mark一下,顺便做一下推荐. vjudge网址:htt ...

  5. ZOJ 1141:Closest Common Ancestors(LCA)

    Closest Common Ancestors Time Limit: 10 Seconds      Memory Limit: 32768 KB Write a program that tak ...

  6. The Trip PC/UVa IDs: 110103/10137, Popularity: B, Success rate: average Level: 1

    #include<cstdio> #include<iostream> #include<string> #include<algorithm> #in ...

  7. POJ 1511 Invitation Cards / UVA 721 Invitation Cards / SPOJ Invitation / UVAlive Invitation Cards / SCU 1132 Invitation Cards / ZOJ 2008 Invitation Cards / HDU 1535 (图论,最短路径)

    POJ 1511 Invitation Cards / UVA 721 Invitation Cards / SPOJ Invitation / UVAlive Invitation Cards / ...

  8. POJ 2289 Jamie's Contact Groups / UVA 1345 Jamie's Contact Groups / ZOJ 2399 Jamie's Contact Groups / HDU 1699 Jamie's Contact Groups / SCU 1996 Jamie's Contact Groups (二分,二分图匹配)

    POJ 2289 Jamie's Contact Groups / UVA 1345 Jamie's Contact Groups / ZOJ 2399 Jamie's Contact Groups ...

  9. UVA 11100 The Trip, 2007 (贪心)

    题目链接:https://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&page=show_problem ...

随机推荐

  1. 关于tomcat启动没有进行编译或者编译报错的问题

    关于tomcat 的问题 如果项目没有编译 解决方案:1: 把项目刷新一下 然后Clean一下,之后等待右下角编译完成100%2: 有可能tomcat conf 里的配置文件的错误 进入查看下3: 如 ...

  2. wireshark 使用技巧

      Wireshark使用技巧-GeoIP显示IP地理位置     在使用Wireshark时,有的时候需要知道抓取的报文中某个IP地址的具体地理位置,笨一点的方法是将IP地址复制,然后通过一些软件或 ...

  3. 2016沈阳网络赛 QSC and Master

    QSC and Master Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 131072/131072 K (Java/Others) ...

  4. Utils 工具 推送

    work_weipa_百度云推送 2014-09-05 17:55 7人阅读 评论(0) 收藏 举报 问题:怎么实现消息推送? 回答:下载sdk,根据文档操作即可 资料:http://develope ...

  5. 会员登录HTML

    <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%><!DOCTYPE html PUBLIC "-//W ...

  6. mariadb cache

    Since MariaDB Galera cluster versions 5.5.40 and 10.0.14 you can use the query cache. Earlier versio ...

  7. JavaScript 中实现继承的方式(列举3种在前一章,我们曾经讲解过创建类的最好方式是用构造函数定义属性,用原型定义方法。)

    第一种:对象冒充 function ClassA(sColor) { this.color = sColor; this.sayColor = function () { alert(this.col ...

  8. html中的空白字符问题

    1.当我们想使用百分比来进行两个盒子的并排 代码: <!DOCTYPE html> <html lang="en"> <head> <me ...

  9. ARC下需要注意的内存管理

    ARC下需要注意的内存管理 2016/04/03 · iOS开发 · 内存管理 分享到:1 原文出处: 一不(@luoyibu)    之前发了一篇关于图片加载优化的文章,还是引起很多人关注的,不过也 ...

  10. create schema 与create database的区别

    概论第四版中增加了create schema (第三版好像没有这个内容),但是却没有提到create  database.相反目前在大多数DBMS中(如SQL Server2000.Mysql等)都有 ...