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

相关文章

Java中常见队列举例详解(非线程安全)

《Java中常见队列举例详解(非线程安全)》队列用于模拟队列这种数据结构,队列通常是指先进先出的容器,:本文主要介绍Java中常见队列(非线程安全)的相关资料,文中通过代码介绍的非常详细,需要的朋... 目录一.队列定义 二.常见接口 三.常见实现类3.1 ArrayDeque3.1.1 实现原理3.1.2

C++ RabbitMq消息队列组件详解

《C++RabbitMq消息队列组件详解》:本文主要介绍C++RabbitMq消息队列组件的相关知识,本文给大家介绍的非常详细,对大家的学习或工作具有一定的参考借鉴价值,需要的朋友参考下吧... 目录1. RabbitMq介绍2. 安装RabbitMQ3. 安装 RabbitMQ 的 C++客户端库4. A

golang实现延迟队列(delay queue)的两种实现

《golang实现延迟队列(delayqueue)的两种实现》本文主要介绍了golang实现延迟队列(delayqueue)的两种实现,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的... 目录1 延迟队列:邮件提醒、订单自动取消2 实现2.1 simplChina编程e简单版:go自带的time

Java的栈与队列实现代码解析

《Java的栈与队列实现代码解析》栈是常见的线性数据结构,栈的特点是以先进后出的形式,后进先出,先进后出,分为栈底和栈顶,栈应用于内存的分配,表达式求值,存储临时的数据和方法的调用等,本文给大家介绍J... 目录栈的概念(Stack)栈的实现代码队列(Queue)模拟实现队列(双链表实现)循环队列(循环数组

Redis消息队列实现异步秒杀功能

《Redis消息队列实现异步秒杀功能》在高并发场景下,为了提高秒杀业务的性能,可将部分工作交给Redis处理,并通过异步方式执行,Redis提供了多种数据结构来实现消息队列,总结三种,本文详细介绍Re... 目录1 Redis消息队列1.1 List 结构1.2 Pub/Sub 模式1.3 Stream 结

SpringKafka错误处理(重试机制与死信队列)

《SpringKafka错误处理(重试机制与死信队列)》SpringKafka提供了全面的错误处理机制,通过灵活的重试策略和死信队列处理,下面就来介绍一下,具有一定的参考价值,感兴趣的可以了解一下... 目录引言一、Spring Kafka错误处理基础二、配置重试机制三、死信队列实现四、特定异常的处理策略五

Spring Boot整合消息队列RabbitMQ的实现示例

《SpringBoot整合消息队列RabbitMQ的实现示例》本文主要介绍了SpringBoot整合消息队列RabbitMQ的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的... 目录RabbitMQ 简介与安装1. RabbitMQ 简介2. RabbitMQ 安装Spring

如何通过Python实现一个消息队列

《如何通过Python实现一个消息队列》这篇文章主要为大家详细介绍了如何通过Python实现一个简单的消息队列,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录如何通过 python 实现消息队列如何把 http 请求放在队列中执行1. 使用 queue.Queue 和 reque

解读Redis秒杀优化方案(阻塞队列+基于Stream流的消息队列)

《解读Redis秒杀优化方案(阻塞队列+基于Stream流的消息队列)》该文章介绍了使用Redis的阻塞队列和Stream流的消息队列来优化秒杀系统的方案,通过将秒杀流程拆分为两条流水线,使用Redi... 目录Redis秒杀优化方案(阻塞队列+Stream流的消息队列)什么是消息队列?消费者组的工作方式每

Redis延迟队列的实现示例

《Redis延迟队列的实现示例》Redis延迟队列是一种使用Redis实现的消息队列,本文主要介绍了Redis延迟队列的实现示例,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习... 目录一、什么是 Redis 延迟队列二、实现原理三、Java 代码示例四、注意事项五、使用 Redi