(不知道可不可以发在对应题目板块于是就发在这里了)
原题:P1047
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <iomanip>
#include <iostream>
#include <stdio.h>
#define NUM 10086
using namespace std;
int main(){
int startp,endp,l,m,tree[NUM],res;
scanf("%d%d",&l,&m);
memset(tree,0,sizeof(tree));
for(int i=0;i<m;i++){
scanf("%d%d",&startp,&endp);
for(int j=startp;j<=endp;j++) tree[j]=1;
}
for(int i=0;i<=l;i++){
if(tree[i]==0) res++;
}
printf("%d",res);
return 0;
}
吸氧之后
吸空气之后
结果你谷给了我一个常规AC,O2爆0¿
是我太菜了吗