POJ2808(校门外的树 )

校门外的树
Time Limit:1000MS  Memory Limit:65536K
Total Submit:4824 Accepted:2091

Description
某校大门外长度为L的马路上有一排树,每两棵相邻的树之间的间隔都是1米。我们可以把马路看成一个数轴,马路的一端在数轴0的位置,另一端在L的位置;数轴上的每个整数点,即0,1,2,……,L,都种有一棵树。
马路上有一些区域要用来建地铁,这些区域用它们在数轴上的起始点和终止点表示。已知任一区域的起始点和终止点的坐标都是整数,区域之间可能有重合的部分。现在要把这些区域中的树(包括区域端点处的两棵树)移走。你的任务是计算将这些树都移走后,马路上还有多少棵树。

Input
输入的第一行有两个整数L(1 <= L <= 10000)和 M(1 <= M <= 100),L代表马路的长度,M代表区域的数目,L和M之间用一个空格隔开。接下来的M行每行包含两个不同的整数,用一个空格隔开,表示一个区域的起始点和终止点的坐标。

Output
输出包括一行,这一行只包含一个整数,表示马路上剩余的树的数目。

Sample Input

500 3
150 300
100 200
470 471

 

Sample Output

298

 

Source
noip2005普及组

 

 

Problem: 2808
Memory: 1932K        Time: 32MS
Language: C
++        Result: Accepted
      #include 
<iostream>
      #include 
<cstdio>
      #include 
<cstring>
      
using namespace std;

      
const int N = 10003;

      
bool tree[N];

      
int main()
      
{
          
int length, count;
          
int a, b, ans;

          
while(cin>>length>>count)
          
{
              memset(tree, 
truesizeof(tree));
              
while(count--)
              
{
                  scanf(
"%d%d"&a, &b);
                  memset(tree 
+ a, false, (b - a + 1* sizeof(bool));

              }


              ans 
= 0;

              
for(int i = 0; i <= length; i++)
                  
if(tree[i])
                      ans
++;
              cout
<<ans<<endl;
          }

          
return 0;
      }


 

posted on 2009-05-31 17:38  Xredman  阅读(375)  评论(0编辑  收藏  举报

导航