UVa 1617 - Laptop(贪心)

有n个长度为1的线段,给出n个区间,第i个区间表示第i个线段所在的范围,求所给线段至少有几个间隙。

首先对区间进行排序,然后单次遍历,对每个求相交区间,当无法相交时,即有一个间隙。

这道题rank 1,截图留念:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include<cstdio>
#include<algorithm>
using namespace std;
const int maxn=100010,inf=1<<30;
struct node{
int l,r;
bool operator < (const node& x) const {
return l!=x.l?l<x.l:r<x.r;
}
} a[maxn];
int main(){
int n,t;
scanf("%d",&t);
while(t--){
scanf("%d",&n);
for(int i=0;i<n;++i)
scanf("%d%d",&a[i].l,&a[i].r);
sort(a,a+n);
int l=-inf,r=inf,cnt=0;
for(int i=0;i<n;++i){
l=max(a[i].l,l+1),r=min(a[i].r,r+1);
if(r<=l) ++cnt,l=a[i].l,r=a[i].r;
}
printf("%d\n",cnt);
}
}

** 本文迁移自我的CSDN博客,格式可能有所偏差。 **