输入
第一行有两个整数L(1 <= L <= 10000)和 M(1 <= M <= 100),L代表马路的长度,M代表区域的数目,L和M之间用一个空格隔开。接下来的M行每行包含两个不同的整数,用一个空格隔开,表示一个区域的起始点和终止点的坐标。
对于20%的数据,区域之间没有重合的部分;
对于其它的数据,区域之间有重合的情况。
输出
包括一行,这一行只包含一个整数,表示马路上剩余的树的数目。
import java.util.Scanner;
class Main {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int l = sc.nextInt();
int[] arr = new int[l + 1];
int m = sc.nextInt();
for (int i = 0; i < m ;i++ ) {
int a = sc.nextInt();
int b = sc.nextInt();
for (int j = a;j <= b ;j++ ) {
arr[j] = 1;
}
}
int count = 0;
for (int i = 0;i <arr.length ;i++ ) {
if (arr[i]!= 1) {
count++;
}
}
System.out.println(count);
}
}