标签:pac clu ret main struct type ack bbb 重叠
第1行:1个数N,线段的数量(2 <= N <= 10000) 第2 - N + 1行:每行2个数,线段的起点和终点(-10^9 <= S,E <= 10^9)
输出最多可以选择的线段数量。
#include <bits/stdc++.h> using namespace std; typedef long long ll; const int maxn = 1e5+10; struct node{ int l,r; bool operator<(const node & a)const { if(a.r != r) return r < a.r; return l < a.l; } }s[maxn]; int main () { int n; scanf("%d",&n); for(int i=0;i<n;i++) scanf("%d %d",&s[i].l,&s[i].r); sort(s,s+n); int ans = s[0].r,res =1; for(int i=1;i<n;i++){ if(ans <= s[i].l){ ans = s[i].r; res++; } } printf("%d\n",res); return 0; }
标签:pac clu ret main struct type ack bbb 重叠
原文地址:http://www.cnblogs.com/Draymonder/p/7349863.html