博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Spreading the Wealth uva 11300
阅读量:7236 次
发布时间:2019-06-29

本文共 1929 字,大约阅读时间需要 6 分钟。

A Communist regime is trying to redistribute wealth in a village. They have have decided to sit everyone around a circular table. First, everyone has converted all of their properties to coins of equal value, such that the total number of coins is divisible by the number of people in the village. Finally, each person gives a number of coins to the person on his right and a number coins to the person on his left, such that in the end, everyone has the same number of coins. Given the number of coins of each person, compute the minimum number of coins that must be transferred using this method so that everyone has the same number of coins.

The Input

 

    There is a number of inputs. Each input begins withn(n<1000001), the number of people in the village.nlines follow, giving the number of coins of each person in the village, in counterclockwise order around the table. The total number of coins will fit inside an unsigned 64 bit integer.

The Output

 

    For each input, output the minimum number of coins that must be transferred on a single line.

Sample Input

 3

100

100

100

4

1

2

5

4

 

Sample Output

 

0 4

题意:n个人坐成一圈,每个人有一些钱,现在要平分这些钱,每个人只能把钱给周围的人,问最少要转移多少钱才能平分。

 

    思路:推导,每个人最终得钱数可以算出为M,对于第i个人来说,Xi为他给上一个人的钱,如此一来 X(i+1) = M - Ai + Xi;X2 = M - A1 + X1 = X1 - C1.依次类推,Xi + 1 = X1 - Ci. Ci数组是可以递推出来的,然后答案就是X1 + |X1 - C1| + |X1 - C2| 。。。。 + |X1 - Cn -1|。中位数为最佳答案。

#include
#include
#include
#include
#include
#include
#define maxn 1000010using namespace std;long long c[maxn],a[maxn],m;int main(){ int n; while(cin >> n) { long long sum = 0; for(int i=1;i<=n;i++) { cin >> a[i]; sum += a[i]; } m = sum / n; c[0] = 0; for(int i=1;i<=n;i++) c[i] = c[i-1] + a[i] - m;//跟新c[i]为x1-m,即第一个借出的钱减去平均值 sort(c,c+n);//排序,贪心要用的 long long x1 = c[n/2],ans = 0;//求出中位数 for(int i=0;i

 

转载于:https://www.cnblogs.com/l609929321/p/6856302.html

你可能感兴趣的文章
outlook错误0x80070057解决方法
查看>>
spring jdbc+HibernateTemplate配置方法
查看>>
类信息查看
查看>>
JS数据类型
查看>>
qos信任边界DSCP-交换机
查看>>
计算机组装DIY
查看>>
beetl里使用json
查看>>
开源作者遭受小白的9种伤害
查看>>
20+ 个清新的网页设计案例
查看>>
django.db.utils.OperationalError: 1050解决方案
查看>>
我的友情链接
查看>>
为什么df和du所查看到的已使用的磁盘容量不同?
查看>>
C++ 定时器的用法:SetTimer和Ontimer
查看>>
连接中控指纹考勤机 zkemkeeper zksoftware ZKTeco
查看>>
商友7.5 续签合同引起无法退
查看>>
读书笔记 - 精益创业
查看>>
工作那些事儿(7)- 再改造
查看>>
mysql tmp下#sql_xxx_0.MYD 类文件占满空间的经历
查看>>
OSPF在转换LSA 5时的转发地址抑制
查看>>
小代码
查看>>