解题思路:
利用标记数组
注意事项:
明确端点是否包含其中
参考代码:
#include <iostream>
using namespace std;
int main ()
{
int l,m;
cin>>l>>m;
int *p=new int [l+1];
for(int i=0;i<l+1;i++)
*(p+i)=1;
for(int i=0;i<m;i++)
{
int temp1,temp2;
cin>>temp1>>temp2;
for(int j=temp1;j<=temp2;j++)
*(p+j)=0;
}
int count=0;
for(int i=0;i<l+1;i++)
if(*(p+i)) count++;
cout<<count<<endl;
return 0;
}
0.0分
0 人评分
C二级辅导-阶乘数列 (C语言代码)浏览:598 |
简单的a+b (C语言代码)浏览:497 |
printf基础练习2 (C语言代码)浏览:704 |
求圆的面积 (C语言代码)浏览:1611 |
回文数字 (C语言代码)浏览:2480 |
1048题解(读入回车问题)浏览:536 |
C语言程序设计教程(第三版)课后习题10.2 (C语言代码)浏览:658 |
Tom数 (C语言代码)浏览:543 |
C语言程序设计教程(第三版)课后习题7.4 (C语言代码)浏览:471 |
2003年秋浙江省计算机等级考试二级C 编程题(2) (C语言代码)浏览:705 |