码迷,mamicode.com
首页 > 其他好文 > 详细

C# 之 System.Object

时间:2014-05-23 07:28:04      阅读:234      评论:0      收藏:0      [点我收藏+]

标签:java   蓝桥杯   算法   

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

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

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


import java.util.Scanner;


public class Test校门外的树 {
	
	public static int[] tree;
	
	public static int count = 0;
	
	public static void main(String[] args) {
		Scanner sc = new Scanner(System.in);
		String str1 = sc.nextLine();
		String[] split = str1.split(" ");
		int total = Integer.parseInt(split[0]);
		int n = Integer.parseInt(split[1]);
		tree = new int[total+1];
		for(int i=0; i<tree.length; i++) {
			tree[i] = 1;
		}
		for(int i=0; i<n; i++) {
			String str = sc.nextLine();
			calc(str);
		}
		for(int i=0; i<tree.length; i++) {
			if(tree[i]==1) {
				count ++;
			}
		}
		System.out.println(count);
	}

	private static void calc(String str) {
		String[] split = str.split(" ");
		int a = Integer.parseInt(split[0]);
		int b = Integer.parseInt(split[1]);
		for(int i=a; i<=b; i++) {
			tree[i] = 0;
		}
	}

}


C# 之 System.Object,布布扣,bubuko.com

C# 之 System.Object

标签:java   蓝桥杯   算法   

原文地址:http://blog.csdn.net/ry513705618/article/details/26280793

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!