题目传送门:http://acm.hdu.edu.cn/showproblem.php?pid=6438

Buy and Resell

Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)
Total Submission(s): 1233    Accepted Submission(s): 407

Problem Description

The Power Cube is used as a stash of Exotic Power. There are n cities numbered 1,2,…,n where allowed to trade it. The trading price of the Power Cube in the i-th city is ai dollars per cube. Noswal is a foxy businessman and wants to quietly make a fortune by buying and reselling Power Cubes. To avoid being discovered by the police, Noswal will go to the i-th city and choose exactly one of the following three options on the i-th day:

1. spend ai dollars to buy a Power Cube
2. resell a Power Cube and get ai dollars if he has at least one Power Cube
3. do nothing

Obviously, Noswal can own more than one Power Cubes at the same time. After going to the n cities, he will go back home and stay away from the cops. He wants to know the maximum profit he can earn. In the meanwhile, to lower the risks, he wants to minimize the times of trading (include buy and sell) to get the maximum profit. Noswal is a foxy and successful businessman so you can assume that he has infinity money at the beginning.

Input

There are multiple test cases. The first line of input contains a positive integer T (T≤250), indicating the number of test cases. For each test case:
The first line has an integer n. (1≤n≤105)
The second line has n integers a1,a2,…,an where ai means the trading price (buy or sell) of the Power Cube in the i-th city. (1≤ai≤109)
It is guaranteed that the sum of all n is no more than 5×105.

Output

For each case, print one line with two integers —— the maximum profit and the minimum times of trading to get the maximum profit.
 
Sample Input
3
4
1 2 10 9
5
9 5 9 10 5
2
2 1
 
Sample Output
16 4
5 2
0 0

Hint

In the first case, he will buy in 1, 2 and resell in 3, 4. profit = - 1 - 2 + 10 + 9 = 16
In the second case, he will buy in 2 and resell in 4. profit = - 5 + 10 = 5
In the third case, he will do nothing and earn nothing. profit = 0

 
Source

题意概括:

有 N 个商店,小商按顺序走过每个商店(不能回头),在每个商店它可以选择在那个商店以那个商店的价格买入或者卖出一件物品,当然他也可以选择不买不卖。小商的背包容量无限大。我需要做的是使得小商走过所有商店之后获得最大的利润以及他所花费的交易次数。

解题思路:

之前牛客暑假多校的一个变形,不只是能拿一个了,可以拿很多个。这道题的解法也是贪心,但是与之前那道很不一样。

首先他可以买多个商品,也就是说,他可能有反悔的机会,也就是说虽然他前面已经把那件商品卖掉了,但如果后面有比前面更优的选择,他其实可以反悔,之前不卖不出去而是等到更优的时候再卖。

而我们要做的就是为他提供一个可以反悔的机会。

这时候就需要用 STL 里的优先队列来维护一个最小堆了,而最小堆里面的是买入的商品(这里指的买入的商品其实更确切的说是加上交换得来的商品,但交换而来的商品要区别于直接花钱买的商品,所以要打上标记),堆顶的值是这些商品中价格最小的。

有了这个反悔神器,小商每到一家商店就可以把商店的交易价和堆顶的值做比较,如果比堆顶的值大的则买入(拿便宜的换贵的嘛),盈利值就是贵的和便宜的价钱之差,并把当前这家商店的商品丢进堆里,那么原本堆顶用于交换的那件呢怎么办呢?这就要看它是当时花钱买来的还是换来的了,如果是花钱买来的就直接不要啦并且操作数+1;如果是交换而来的,那么就去掉标记重新入堆(这种情况下我们发现其实它相当于一个中转物品了,这件贵的物品其实是跟交换它的那件物品进行交换了,而不是跟它,所以操作数不变并且要去掉标记)。如果当前商店的交易价比堆顶的要小呢,当然丢进堆里啦(反正现在丢进堆里又不用钱),如果后面有机会用高价换掉它的话又赚一波。所以有了这个时光机,商人可是稳赚不赔的啊。

AC code:

 #include <bits/stdc++.h>
#define INF 0x3f3f3f3f
#define ll long long int
using namespace std;
const int MAXN = 1e5+;
int N;
struct tp{
int x, v;
bool sell;
bool friend operator<(tp a, tp b)
{
if(a.v == b.v) return !a.sell;
return a.v > b.v;
}
};
int main()
{
int T_case, a;
scanf("%d", &T_case);
while(T_case--)
{
priority_queue<tp> Q;
scanf("%d", &N);
scanf("%d", &a);
tp temp;
temp.x = ;
temp.v = a;
temp.sell = false;
Q.push(temp);
ll ans = , time = ;
for(int i = ; i <= N; i++)
{
scanf("%d", &a);
temp.sell = false;
if(a > Q.top().v)
{
tp top = Q.top();
Q.pop();
ans+=a-top.v;
if(top.sell)
{
top.sell = false;
Q.push(top);
}
else time++;
temp.sell = true;
}
temp.x = i;
temp.v = a;
Q.push(temp);
}
printf("%lld %lld\n", ans, time*);
}
return ;
}

2018中国大学生程序设计竞赛 - 网络选拔赛 1001 - Buy and Resell 【优先队列维护最小堆+贪心】的更多相关文章

  1. 2018中国大学生程序设计竞赛 - 网络选拔赛 hdu6438 Buy and Resell 买入卖出问题 贪心

    Buy and Resell Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)To ...

  2. 2018中国大学生程序设计竞赛 - 网络选拔赛 1010 YJJ's Salesman 【离散化+树状数组维护区间最大值】

    题目传送门:http://acm.hdu.edu.cn/showproblem.php?pid=6447 YJJ's Salesman Time Limit: 4000/2000 MS (Java/O ...

  3. 2018中国大学生程序设计竞赛 - 网络选拔赛 1009 - Tree and Permutation 【dfs+树上两点距离和】

    Tree and Permutation Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Oth ...

  4. 2016中国大学生程序设计竞赛 - 网络选拔赛 1001 A water problem (大数取余)

    Problem Descripton Two planets named Haha and Xixi in the universe and they were created with the un ...

  5. HDU - 6440 Dream 2018中国大学生程序设计竞赛 - 网络选拔赛

    给定的\(p\)是素数,要求给定一个加法运算表和乘法运算表,使\((m+n)^p = m^p +n^p(0 \leq m,n < p)\). 因为给定的p是素数,根据费马小定理得 \((m+n) ...

  6. 2018中国大学生程序设计竞赛 - 网络选拔赛 Dream hdu6440 Dream 给出一个(流氓)构造法

    http://acm.hdu.edu.cn/showproblem.php?pid=6440 题意:让你重新定义任意一对数的乘法和加法结果(输出乘法口诀表和加法口诀表),使得m^p+n^p==(m+n ...

  7. hdu6444 2018中国大学生程序设计竞赛 - 网络选拔赛 1007 Neko's loop

    Neko's loop Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/65536 K (Java/Others) Total S ...

  8. 2018中国大学生程序设计竞赛 - 网络选拔赛 Solution

    A - Buy and Resell 题意:给出n个交易点,每次能够选择买或者卖,求获得最大利润 思路:维护两个优先队列,一个是卖,一个是替换,当价格差相同时,优先替换,因为次数要最少 #includ ...

  9. 2018中国大学生程序设计竞赛 - 网络选拔赛 4 - Find Integer 【费马大定理+构造勾股数】

    Find Integer Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/65536 K (Java/Others)Tota ...

随机推荐

  1. SpringBoot---开发的热部署

    1.模板的热部署 在SpringBoot中,模板引擎的页面默认是开启缓存的: 如果修改了页面的内容,则刷新不到修改后的页面: 可以在application.properties中关闭模板引擎的缓存: ...

  2. HTML练习 | 百度搜索框

    <!DOCTYPE html> <head> <title>百度首页</title> <style> .logo{ background:u ...

  3. Linux利器strace

    strace常用来跟踪进程执行时的系统调用和所接收的信号. 在Linux世界,进程不能直接访问硬件设备,当进程需要访问硬件设备(比如读取磁盘文件,接收网络数据等等)时,必须由用户态模式切换至内核态模式 ...

  4. nginx安装及优化

    1.pcre及nginx安装包下载 wget http://www.pcre.org/   pcre用yum安装即可 http://nginx.org/en/download.html 2.安装 -安 ...

  5. Java Bean Validation(参数校验) 最佳实践

    转载来自:http://www.cnblogs.com 参数校验是我们程序开发中必不可少的过程.用户在前端页面上填写表单时,前端js程序会校验参数的合法性,当数据到了后端,为了防止恶意操作,保持程序的 ...

  6. 文件读取工具类读取properties文件

    1.创建工具类 import java.io.IOException; import java.util.Properties; /** * * 类名称:PropertiesUtil * 类描述: 文 ...

  7. C# 用tabcontrol实现窗体类似网页排版的显示

    这里做的比较简陋,可以美化下 把form设置为非顶级控件,直接放在tabcontrol里边,然后实现tabcontrol的拖拽移除tabpage显示form以及添加tabpage mousemove的 ...

  8. clearfix为什么用display:table,而不用display:block

    我们都知道clearfix一般这么写: .clearfix:before,.clearfix:after{ content:""; display:table; } .clearf ...

  9. angular - webpack2 例子

    用一周多的时间做了一个简易的wap站 之前研究过webpack但是一直没用过,这次公司要做一个h5网站,正好拿来练练手,话说angular1x对移动端不是很友好,但主要是angular1x比较熟悉,上 ...

  10. linux里终端安转视频播放器的操作及显示

    [enilu@enilu ~]$ mplayerbash: mplayer: command not found[enilu@enilu ~]$ yum list | grep mplayer^C^C ...