标签:
第一行一个正整数n (n <= 10000)代表活动的个数。 第二行到第(n + 1)行包含n个开始时间和结束时间。 开始时间严格小于结束时间,并且时间都是非负整数,小于1000000000
一行包含一个整数表示最少教室的个数。
3 1 2 3 4 2 9
2
思路:按线段右端点排序按,之后暴力扫一遍计数;
AC代码:
#include <bits/stdc++.h>
using namespace std;
const int N=1e4+5;
struct node
{
int l,r;
};
node po[N];
int cmp(node x,node y)
{
if(x.r==y.r)return x.l<y.l;
return x.r<y.r;
}
int main()
{
int n;
scanf("%d",&n);
for(int i=0;i<n;i++)
{
scanf("%d%d",&po[i].l,&po[i].r);
}
sort(po,po+n,cmp);
int ans=0,mmax;
for(int i=0;i<n;i++)
{
mmax=1;
for(int j=i+1;j<n;j++)
{
if(po[j].l<po[i].r)mmax++;
}
ans=max(ans,mmax);
}
printf("%d\n",ans);
return 0;
}
标签:
原文地址:http://www.cnblogs.com/zhangchengc919/p/5160319.html