解题思路:
注意事项:
参考代码:
#include<iostream>
using namespace std;
int main()
{
int L,M;
cin>>L>>M;
int qishi[100],zhongzhi[100];
for(int i=0;i<M;i++)
{
cin>>qishi[i]>>zhongzhi[i];
}
int shu[10000]; //to describe trees' situations
for(int i=0;i<=L;i++) //1 existed
{ //0 destroyed
shu[i]=1;
for(int j=0;j<M;j++)
{
if(i>=qishi[j]&&i<=zhongzhi[j])
{
shu[i]=0;
}
}
}
int out=0;
for(int i=0;i<=L;i++)
{
if(shu[i]==1)
{ out++;
}
}
cout<<out<<endl;
return 0;
}
0.0分
0 人评分
C语言训练-素数问题 (C语言代码)浏览:1695 |
C语言训练-计算1~N之间所有奇数之和 (C语言代码)浏览:689 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:561 |
WU-蓝桥杯算法提高VIP-勾股数 (C++代码)浏览:1684 |
分糖果 (C语言代码)浏览:980 |
简单的a+b (C语言代码)浏览:444 |
A+B for Input-Output Practice (II) (C语言代码)浏览:622 |
C语言训练-斐波纳契数列 (C语言代码)浏览:540 |
明明的随机数 (C语言代码)浏览:965 |
C语言程序设计教程(第三版)课后习题7.3 (C语言代码)浏览:599 |