原题链接:https://www.luogu.com.cn/problem/P1047
#include <bits/stdc++.h>
using namespace std;
int main()
{
int m,l,u,v;
cin>>l>>m;
short yn[l]={0},s=0;
for(int i=0;i<m;i++){
cin>>u>>v;
for(int j=u;j<=v;j++) yn[j]=1;
}
for(int i=0;i<=l;i++)
if(yn[i]==0) s++;
cout<<s<<endl;
return (0);
}
这段码根据下图改的
看着左右都一样.结果和改之前 和案例总差一.
想请教一下问题在哪?