UVa 11054/HDU 1489/POJ 2940 Wine trading in Gergovia(贪心双向队列)

2024-03-05 21:08

本文主要是介绍UVa 11054/HDU 1489/POJ 2940 Wine trading in Gergovia(贪心双向队列),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

11054 - Wine trading in Gergovia

Time limit: 3.000 seconds

http://uva.onlinejudge.org/index.php?option=com_onlinejudge&Itemid=8&category=113&page=show_problem&problem=1995

http://acm.hdu.edu.cn/showproblem.php?pid=1489

http://poj.org/problem?id=2940

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 Specification

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 aibottles 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 Specification
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", 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


思路:


一开始我想的是用双向队列存储,模仿:1. 顾客排队和售货商的排队 2. 回合制游戏

(注意,就算正数是卖出,负数是买入,结果也是一样的。)


但是,后来我发现不用这么做,

一种新思路:

假设有一辆马车,从左往右行驶,它可以代替人们买卖葡萄酒!你可能会问,如果一开始遇到的都是想买的人呢?可以这么想,从买家到卖家和从卖家到买家是等价的。所以整个程序可以顺序一遍搞定。


完整代码:

双向队列的,慢死了:

PS:在UVaOJ上请使用%lld替代%I64d

/*UVaOJ: 0.065s*/
/*HDU: 62ms,1740KB*/
/*POJ: 375ms,2056KB*/#include <cstdio>
#include <deque>
#include <algorithm>
using namespace std;struct node
{int pos, num;
} a[100000];deque<node> buy, sell;int main()
{int n, temp;while (scanf("%d", &n), n){buy.clear();sell.clear();node tempbuy, tempsell;long long sum = 0;for (int i = 0; i < n; i++){scanf("%d", &temp);a[i].pos = i;a[i].num = temp;if (temp > 0)buy.push_back(a[i]);else if (temp < 0)sell.push_back(a[i]);//注意a[i].num是负数//while里面的操作就像回合制游戏一样,你懂的~while (!(buy.empty() || sell.empty())){tempbuy = buy.front();buy.pop_front();tempsell = sell.front();sell.pop_front();if (tempbuy.num + tempsell.num > 0){sum -= tempsell.num * abs(tempbuy.pos - tempsell.pos);tempbuy.num += tempsell.num;buy.push_front(tempbuy);}else{if (tempbuy.num + tempsell.num < 0){tempsell.num += tempbuy.num;sell.push_front(tempsell);}sum += tempbuy.num * abs(tempbuy.pos - tempsell.pos);}}}printf("%I64d\n",sum);}return 0;
}

新思路:

PS:在UVaOJ上请使用%lld替代%I64d

/*UVaOJ: 0.048s*/
/*HDU: 31ms,228KB*/
/*POJ: 94ms,144KB*/#include <cstdio>
#include <algorithm>
using namespace std;int main()
{int n, a;long long temp, ans;while (scanf("%d", &n), n){temp = ans = 0;for (int i = 0; i < n; i++){scanf("%d", &a);temp += a;ans += abs(temp);}printf("%I64d\n", ans);}return 0;
}



这篇关于UVa 11054/HDU 1489/POJ 2940 Wine trading in Gergovia(贪心双向队列)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/777815

相关文章

hdu1180(广搜+优先队列)

此题要求最少到达目标点T的最短时间,所以我选择了广度优先搜索,并且要用到优先队列。 另外此题注意点较多,比如说可以在某个点停留,我wa了好多两次,就是因为忽略了这一点,然后参考了大神的思想,然后经过反复修改才AC的 这是我的代码 #include<iostream>#include<algorithm>#include<string>#include<stack>#include<

csu1329(双向链表)

题意:给n个盒子,编号为1到n,四个操作:1、将x盒子移到y的左边;2、将x盒子移到y的右边;3、交换x和y盒子的位置;4、将所有的盒子反过来放。 思路分析:用双向链表解决。每个操作的时间复杂度为O(1),用数组来模拟链表,下面的代码是参考刘老师的标程写的。 代码如下: #include<iostream>#include<algorithm>#include<stdio.h>#

usaco 1.3 Barn Repair(贪心)

思路:用上M块木板时有 M-1 个间隙。目标是让总间隙最大。将相邻两个有牛的牛棚之间间隔的牛棚数排序,选取最大的M-1个作为间隙,其余地方用木板盖住。 做法: 1.若,板(M) 的数目大于或等于 牛棚中有牛的数目(C),则 目测 给每个牛牛发一个板就为最小的需求~ 2.否则,先对 牛牛们的门牌号排序,然后 用一个数组 blank[ ] 记录两门牌号之间的距离,然后 用数组 an

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

poj 3974 and hdu 3068 最长回文串的O(n)解法(Manacher算法)

求一段字符串中的最长回文串。 因为数据量比较大,用原来的O(n^2)会爆。 小白上的O(n^2)解法代码:TLE啦~ #include<stdio.h>#include<string.h>const int Maxn = 1000000;char s[Maxn];int main(){char e[] = {"END"};while(scanf("%s", s) != EO

uva 10055 uva 10071 uva 10300(水题两三道)

情歌两三首,水题两三道。 好久没敲代码了为暑假大作战热热身。 uva 10055 Hashmat the Brave Warrior 求俩数相减。 两个debug的地方,一个是longlong,一个是输入顺序。 代码: #include<stdio.h>int main(){long long a, b;//debugwhile(scanf("%lld%lld", &

hdu 2093 考试排名(sscanf)

模拟题。 直接从教程里拉解析。 因为表格里的数据格式不统一。有时候有"()",有时候又没有。而它也不会给我们提示。 这种情况下,就只能它它们统一看作字符串来处理了。现在就请出我们的主角sscanf()! sscanf 语法: #include int sscanf( const char *buffer, const char *format, ... ); 函数sscanf()和

hdu 2602 and poj 3624(01背包)

01背包的模板题。 hdu2602代码: #include<stdio.h>#include<string.h>const int MaxN = 1001;int max(int a, int b){return a > b ? a : b;}int w[MaxN];int v[MaxN];int dp[MaxN];int main(){int T;int N, V;s

poj 1511 Invitation Cards(spfa最短路)

题意是给你点与点之间的距离,求来回到点1的最短路中的边权和。 因为边很大,不能用原来的dijkstra什么的,所以用spfa来做。并且注意要用long long int 来存储。 稍微改了一下学长的模板。 stack stl 实现代码: #include<stdio.h>#include<stack>using namespace std;const int M

poj 3259 uva 558 Wormholes(bellman最短路负权回路判断)

poj 3259: 题意:John的农场里n块地,m条路连接两块地,w个虫洞,虫洞是一条单向路,不但会把你传送到目的地,而且时间会倒退Ts。 任务是求你会不会在从某块地出发后又回来,看到了离开之前的自己。 判断树中是否存在负权回路就ok了。 bellman代码: #include<stdio.h>const int MaxN = 501;//农场数const int