Buy and Resell

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

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
 
  用一个优先队列维护当前可购买的最小值有哪些,对每一天考虑如果当前这天卖出可获得的最大价值,由于在当前天卖出不一定是最优的,在卖出后在将a的值入队然后标记一下表示这个a是由另一个价值x卖掉之后得到的,和普通的a略有不同,这样在后面出现a是最小值的
时候次数就可以不变了。(x->a->y  <==>  x->y),相同的数可能出现多次所以标记可以累计,一开始只是用了0/1疯狂WA。
  

 #include<bits/stdc++.h>
using namespace std;
#define LL long long
map<int,int>M;
int main(){
int t,n,m,i,j,k,a;
cin>>t;
while(t--){
scanf("%d",&n);
priority_queue<int,vector<int>,greater<int> >q;
M.clear();
LL s1=,s2=;
for(i=;i<=n;++i){
scanf("%d",&a);
if(q.empty() || q.top()>=a){
q.push(a);
}
else{
s1+=a-q.top();
if(M[q.top()]==){
s2++;
}
else{
M[q.top()]--;
}
q.pop();
q.push(a);
q.push(a);
M[a]++;
} }
//cout<<s1<<endl;
printf("%lld %lld\n",s1,s2*);
}
return ;
}

最新文章

  1. .NET跨平台实践:用C#开发Linux守护进程
  2. zookeeper安装配置
  3. Counting-Sort
  4. OpenCV 3.0 VS2010 Configuration
  5. MTK+Android编译
  6. javascript callback函数的理解与使用
  7. 关于PHP Websocket 错误: &quot;stream_select(): You MUST recompile PHP with a larger value of FD_SETSIZE&quot; 的解决方案
  8. tomcat错误信息解决方案【严重:StandardServer.await: create[8005]
  9. meta 标签整理
  10. datatables表格
  11. 微信小程序开发基础知识总结
  12. PHP实现WebService的简单示例和实现步骤
  13. Java 多线程之线程池的使用
  14. Vue路由学习心得
  15. 杭电1532----Drainage Ditches『最大流』
  16. [luogu P3953] [noip2017 d1t3] 逛公园
  17. CSS控制文字显示一行,超出显示省略号
  18. jquery中选择checkbox拼接成字符串,然后到后台拆分取值
  19. golang简单实现jwt验证(beego、xorm、jwt)
  20. BZOJ 1834 网络扩容 最大流+最小费用流

热门文章

  1. 将 Graphviz .dot 文件转换为其他格式的图像
  2. 2、Python函数详解(0601)
  3. HDU 4325 Flowers(树状数组+离散化)
  4. python web py安装与简单使用
  5. WebAPI使用Token进行验证
  6. Thread.Sleep(0)妙用
  7. 《剑指offer》第四十八题(最长不含重复字符的子字符串)
  8. cordova + Vue 开发 APP 上手指南
  9. split函数
  10. Inception Network