原题:
数据范围限制
10% n<=25
60% n<10000
100% 1<=n<=100000,Di、Pi<=1000000000
最后的答案可能超过32位整型。
60% n<10000
100% 1<=n<=100000,Di、Pi<=1000000000
最后的答案可能超过32位整型。
思路不说,详见:我是快乐的老秃驴。
本来说用个小根堆优化,然后打算肝一晚上把小根堆学会的。然后在某位巨佬的指点下,搜索了一个叫优先队列的东西,然后出现一个神奇无比的东西,详见:转码链接。
对,就是这个:priority_queue <int,vector<int>,greater<int> > q ; !!!优先队列!!!
然后完美的干掉了堆优化,逐渐上手了这个小东西。
当然,要注意的是:我们贪心的时候不能一个一个时间找,因为d很大,所以会爆炸。我们应该直接考虑优先队列的大小,然后进行比较,插入弹出。
见代码
#include<cstdio> #include<cstring> #include<cmath> #include<algorithm> #include<queue> using namespace std; int n; long long ans; priority_queue<int,vector<int>,greater<int> >q; struct study{ int d,p; }; study a[100001]; bool cmp1(study x,study y) { return x.d <y.d ; } bool CMP(study x,study y) { return x.p<y.p; } int main() { freopen("study.in","r",stdin); freopen("study.out","w",stdout); scanf("%d",&n); for(int i=1;i<=n;i++) scanf("%d%d",&a[i].d,&a[i].p); sort(a+1,a+1+n,cmp1); for(int i=1;i<=n;i++) { bool g=false; if(a[i].d<=q.size()) { if(q.top()<a[i].p) { ans-=q.top(); q.pop(); q.push(a[i].p); ans+=a[i].p; } } else { q.push(a[i].p); ans+=a[i].p; } } printf("%lld",ans); return 0; }