股神小L [贪心]
Posted dedicatus545
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了股神小L [贪心]相关的知识,希望对你有一定的参考价值。
题面
思路
股票题肯定是贪心或者$dp$啊
这个题比较$naive$,可以看出来你这里买股票的过程一定是能不买就不买,能卖就拣最贵的日子卖,而且时间不能倒流(废话= =||)
所以我们按照时间从前往后维护一个堆,表示你要卖股票的日子
每次访问到的时候,先把当前加进堆里
然后如果买的没有卖的多(也就是堆的size比已经过去的日子的一半多了),就买最便宜的那个
这样就做完了,300B良心题
Code
#include<cstdio>
#include<algorithm>
#include<queue>
using namespace std;
int n,a[200010];
long long ans;
priority_queue<int,vector<int>,greater<int> >q;
int main(){
scanf("%d",&n);
int i;
for(i=1;i<=n;i++)
scanf("%d",&a[i]),ans+=a[i];
for(i=1;i<=n;i++){
q.push(a[i]);
if(q.size()>(i>>1)){
ans-=q.top()*2;
q.pop();
}
}
printf("%lld
",ans);
}
以上是关于股神小L [贪心]的主要内容,如果未能解决你的问题,请参考以下文章