码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 2431 Expedition

时间:2018-05-11 17:18:25      阅读:133      评论:0      收藏:0      [点我收藏+]

标签:out   empty   次数   exp   false   flag   ase   with   priority   

没油瞬移回去加
为了少次数每次尽可能多加

#include <iostream>
#include <queue>

using namespace std;

const int MAXL=1000111;

int N;
int L, Now;
int Val[MAXL];
int Ans=0;
bool Flag=true;
priority_queue<int> PQ;

int main(){
    ios_base::sync_with_stdio(false);
    
    cin >> N;
    for(int i=1, d, v;i<=N;++i){
        cin >> d >> v;
        Val[d]+=v;
    }
    cin >> L >> Now;
    
    for(int i=L-1;i>=1;--i){
        if(Val[i]>0)    PQ.push(Val[i]);
        --Now;
        if(Now==0){
            if(PQ.empty()){
                Flag=false;
                break;
            }
            Now+=PQ.top();PQ.pop();
            ++Ans;
        }
    }
    
    if(Flag)    cout << Ans << endl;
    else    cout << "-1" << endl;
    
    return 0;
}

POJ 2431 Expedition

标签:out   empty   次数   exp   false   flag   ase   with   priority   

原文地址:https://www.cnblogs.com/Pickupwin/p/9025167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!