比赛 greedyyyyyy 评测结果 AAAAAAAAAA
题目名称 HS's bridge 最终得分 100
用户昵称 袁书杰 运行时间 0.444 s
代码语言 C++ 内存使用 4.99 MiB
提交时间 2024-10-11 21:01:38
显示代码纯文本
#include<bits/stdc++.h>
using namespace std;
#define int long long
int n,m,now,ans;
struct node{
	int l,r;
}a[1000005];
bool cmp(node a1,node a2){
	if(a1.r==a2.r){
		return a1.l>a2.l;
	}
	return a1.r<a2.r;
}
signed main(){
    freopen("bridge.in","r",stdin);
    freopen("bridge.out","w",stdout);
    ios::sync_with_stdio(false);
    cin.tie(0),cout.tie(0);
    cin>>n>>m;
    for(int i=1;i<=m;i++){
    	cin>>a[i].l>>a[i].r;
    }
    sort(a+1,a+m+1,cmp);
    for(int i=1;i<=m;i++){
    	if(now<a[i].l){
    		now=a[i].r-1;
    		ans++;
    	}
    }
    cout<<ans;
    return 0;
}