φ(* ̄0 ̄)
2023-08-12 15:40:18
发布于:浙江
0阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int l,m,a[10001],s;
int main(){
cin>>l>>m;
for(int i=0;i<=l;i++) a[i]=1;
for(int i=1;i<=m;i++){
int x,y;
cin>>x>>y;
for(int j=x;j<=y;j++)a[j]=0;
}
for(int i=0;i<=l;i++) s+=a[i];
cout<<s;
return 0;
}
这里空空如也
有帮助,赞一个