51NOD 1163 最高的獎勵
阿新 • • 發佈:2017-08-13
ons 優先 struct str 當前時間 nco ret quest max
來源:http://www.51nod.com/onlineJudge/questionCode.html#!problemId=1163
這個題 自己想了想 mmp 感覺一做貪心題只會用 sort 忽略了 優先隊列
這題搜了題解後 大概明白了 就是建立一個最小堆 把cost 壓入最小堆 如果當前時間 》 Q.size() 說明可以直接加
如果小於等於 就要把cost 壓入後 取一個最小的出來
挺好的一個題
#include <bits/stdc++.h> using namespace std; typedef long long ll; constint maxn = 50000+10; struct node { int l,cost; bool operator <(const node & a)const{ return l < a.l; } }s[maxn]; int main () { int n; scanf("%d",&n); for(int i=0;i<n;i++) scanf("%d%d",&s[i].l,&s[i].cost); sort(s,s+n); priority_queue<int,vector<int>,greater<int> > Q; ll res = 0; for(int i=0;i<n;i++) { if(s[i].l > Q.size()){ res += s[i].cost; Q.push(s[i].cost); } else { res += s[i].cost; Q.push(s[i].cost);int t = Q.top(); Q.pop(); res -= t; } } printf("%lld\n",res); }
51NOD 1163 最高的獎勵