首页 > 其他 > 详细

bzoj1216: [HNOI2003]操作系统

时间:2016-05-28 00:59:01      阅读:220      评论:0      收藏:0      [点我收藏+]

堆。

一道模拟,不过不同的人模拟出来的效果差距很大,比方说我抄的这个就太劲了。。

#include<cstdio>
#include<algorithm>
#include<cstring>
#include<queue>
using namespace std;
struct data {
    int n,s,t,p;
    data() {}
    data(int n,int s,int t,int p):n(n),s(s),t(t),p(p) {}
    
    bool operator < (const data& rhs) const {
        return p<rhs.p || (p==rhs.p && s>rhs.s);    
    }
};
priority_queue<data> q;
int n,s,t,p,d,T=0;
data x;

int main() {
    while(scanf("%d%d%d%d",&n,&s,&t,&p)!=EOF) {
        while(T<s&&!q.empty()) {
            x=q.top(); q.pop();
            d=min(x.t,s-T);
            T+=d;
            x.t-=d;
            if(x.t) q.push(x);
            else printf("%d %d\n",x.n,T);
        }
        q.push(data(n,s,t,p));
        T=s;
    }
    while(!q.empty()) {
        x=q.top(); q.pop();
        printf("%d %d\n",x.n,T+=x.t);    
    }
    return 0;
}

bzoj1216: [HNOI2003]操作系统

原文:http://www.cnblogs.com/invoid/p/5536430.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!