Wine Trading in Gergovia
Time Limit: 1000MS   Memory Limit: 65536K
Total Submissions: 3187   Accepted: 1454

Description

As you may know from the comic “Asterix and the Chieftain’s Shield”, Gergovia consists of one street, and every inhabitant of the city is a wine salesman. You wonder how this economy works? Simple enough: everyone buys wine from other inhabitants of the city. Every day each inhabitant decides how much wine he wants to buy or sell. Interestingly, demand and supply is always the same, so that each inhabitant gets what he wants.

There is one problem, however: Transporting wine from one house to another results in work. Since all wines are equally good, the inhabitants of Gergovia don’t care which persons they are doing trade with, they are only interested in selling or buying a specific amount of wine. They are clever enough to figure out a way of trading so that the overall amount of work needed for transports is minimized.

In this problem you are asked to reconstruct the trading during one day in Gergovia. For simplicity we will assume that the houses are built along a straight line with equal distance between adjacent houses. Transporting one bottle of wine from one house to an adjacent house results in one unit of work.

Input

The input consists of several test cases.

Each test case starts with the number of inhabitants n (2 ≤ n ≤ 100000). The following line contains n integers ai (−1000 ≤ ai ≤ 1000). If ai ≥ 0, it means that the inhabitant living in the ith house wants to buy ai bottles of wine, otherwise if ai < 0, he wants to sell −ai bottles of wine. You may assume that the numbers ai sum up to 0.

The last test case is followed by a line containing 0.

Output

For each test case print the minimum amount of work units needed so that every inhabitant has his demand fulfilled. You may assume that this number fits into a signed 64-bit integer (in C/C++ you can use the data type “long long” or “__int64”, in JAVA the data type “long”).

Sample Input

5
5 -4 1 -3 1
6
-1000 -1000 -1000 1000 1000 1000
0

Sample Output

9
9000 思路:最终每个位置上的数应该是0;
    设now为当前剩余要搬的葡萄酒数目;ans为目前最小工作量。初始时now和ans为0;
    顺序扫描每个房间i(0<=i&&i<n):
      ans+=now;now+=a[i];
     最后得出的ans为最小工作量。
 #include<iostream>
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cstdlib>
#include<iomanip>
#include<cmath>
#include<vector>
#include<queue>
#include<stack>
using namespace std;
#define PI 3.141592653589792128462643383279502
#define N 100005
int main(){
//#ifdef CDZSC_June
freopen("in.txt","r",stdin);
//#endif
//std::ios::sync_with_stdio(false);
long long n,a[N],ans;int now;
while(scanf("%lld",&n),n){
ans=;now=;
for(int i=;i<n;i++){
scanf("%lld",a+i);
ans+=abs(now);
now+=a[i];
}
cout <<ans<<endl;
} return ;
}

 

最新文章

  1. Quick Cocos 旋转子弹的实现中我学到的
  2. 把Sharepoint Desinger 工作流部署到生产环境
  3. 一致性 hash 算法( consistent hashing )a
  4. 并发下常见的加锁及锁的PHP具体实现-转载
  5. object references an unsaved transient instance - save the transient instance before flushing错误
  6. [Android]ListFragment.setEmptyText() 抛 java.lang.IllegalStateException
  7. 分享一个最近研究的手机QQ3.0的协议(版本1.4)
  8. C#写文本日志帮助类(支持多线程)
  9. JavaWeb学习计划
  10. 针对安卓java入门:条件语句和循环语句
  11. css 不确定元素宽度的水平居中
  12. gulp 打包合并
  13. 理解SynchronizationContext,如何在Winform里面跨线程访问UI控件
  14. Bootstrap学习(一):Bootstrap简介
  15. 【Android】TypedArray和obtainStyledAttributes使用
  16. 自己动手写waf指纹识别
  17. PAT甲题题解-1053. Path of Equal Weight (30)-dfs
  18. boost::asio::ip::tcp实现网络通信的小例子
  19. Monkey学习笔记&lt;三&gt;:Monkey脚本编写
  20. dpkg使用记录

热门文章

  1. mysql 索引 和mysql 的引擎
  2. HDU 1372 Knight Moves (广搜)
  3. px,em,rem字体单位
  4. js 验证ip列表
  5. device tree property ---- interrupt-names
  6. Docker壳的配置笔记
  7. C基础 万能动态数组
  8. HTML 知识点总结
  9. 如何测试一台主机的IP和端口是否能连通,ping telnet
  10. 多路复用I/O模型epoll() 模型 代码实现