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

NYOJ 会场安排问题

时间:2018-10-22 22:15:22      阅读:244      评论:0      收藏:0      [点我收藏+]

标签:cin   col   ==   stream   ret   nbsp   color   lse   while   

#include<iostream>
#include<stdio.h>
#include<string.h>
#include<queue>
#include<algorithm>
using namespace std;
struct HY
{
    int u,v;
}hy[10005];
bool cmp(HY a,HY b)
{
    if(a.v == b.v)    return a.u>b.u;    
    else            return a.v<b.v;
}
int main()
{
    int t;
    cin>>t;
    while(t--)
    {
        int n;
        cin>>n;
        for(int i=0;i<n;i++)
        {
            scanf("%d %d",&hy[i].u,&hy[i].v);
        }
        sort(hy,hy+n,cmp);
        int begin=-1,end=-1,cnt=0;
        for(int i=0;i<n;i++)
        {
            if(i!=0)
            {
                if(hy[i].u>end)
                {
                    end = hy[i].v;
                    cnt++;
                }
            }
            else
            {
                end = hy[i].v;
                cnt++;
            }
        }
        cout<<cnt<<endl;
    }
    return 0;
} 

 

NYOJ 会场安排问题

标签:cin   col   ==   stream   ret   nbsp   color   lse   while   

原文地址:https://www.cnblogs.com/fzuhyj/p/9833207.html

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