记录编号 |
171371 |
评测结果 |
AAAAAAAAAA |
题目名称 |
[NOIP 2005]校门外的树 |
最终得分 |
100 |
用户昵称 |
stone |
是否通过 |
通过 |
代码语言 |
C++ |
运行时间 |
0.007 s |
提交时间 |
2015-07-18 19:31:24 |
内存使用 |
0.33 MiB |
显示代码纯文本
#include<cstdio>
#include<algorithm>
#include<cstring>
#include<cstdlib>
#include<iostream>
using namespace std;
struct node{
int a,b;
};
node p[101];
bool tree[10001];
int sum=0;
int main(){
freopen("tsuri.in","r",stdin);
freopen("tsuri.out","w",stdout);
int l,m;
memset(tree,false,sizeof(tree));
cin >> l >> m;
for(int i=1;i<=m;++i){
cin >> p[i].a >> p[i].b;
}
for(int i=1;i<=m;++i){
for(int j=p[i].a;j<=p[i].b;++j){
tree[j]=true;
}
}
for(int i=0;i<=l;++i){
if(!tree[i])++sum;
}
cout << sum;
return 0;
}