UVAlive 5864 Register Allocation 题解

题目

Tri_integral Summer Training 4

题意:

有一些事件,已知发生的时间段(闭区间)。如果两个事件发生的时间没有交集,则可以安排在同一天,求至少要几天。

题解:

将所有事件插入set中,一个事件发生后,选择第一个在它结束后发生的事件,如果没有,开始新的一天。


//Time:26ms
//Memory:0KB
//Length:1047B
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <algorithm>
#include <cstring>
#include <set>
#define MAXN 20010
#define INF 1000000007
#define MP(x,y) make_pair(x,y)
#define FI first
#define SE second
using namespace std;
int s[MAXN],f[MAXN];
bool vi[MAXN];
set<pair<int,int> > se;
pair<int,int> pa[MAXN];
int main()
{
    //freopen("/home/moor/Code/input","r",stdin);
    int ncase,n,top,ans,pre;
    scanf("%d",&ncase);
    while(ncase--)
    {
        memset(vi,0,sizeof(vi));
        top=0;
        scanf("%d",&n);
        se.clear();
        for(int i=1;i<=n;++i)
        {
            scanf("%d%d",&s[i],&f[i]);
            se.insert(MP(s[i],i));
        }
        ans=0;
        while(se.size())
        {
            ++ans;
            set<pair<int,int> > ::iterator ite=se.begin();
            int to;
            while(ite!=se.end())
            {
                to=f[ite->SE];
                se.erase(ite);
                ite=se.upper_bound(MP(to,INF));
            }
        }
        printf("%d\n",ans);
    }
}


你可能感兴趣的:(UVAlive 5864 Register Allocation 题解)