当前位置:   article > 正文

LeetCode 252. 会议室(排序)_安排会议室代码

安排会议室代码
package 扫描线;

import java.math.MathContext;
import java.util.Arrays;

public class 扫描线 {
	public static void main(String[] args) {
		int[][] nums = {
				{0, 30},
				{5, 10},
				{15, 20}
		};
		System.out.println(canAttendMeeting(nums));
	}
	//这个求解方式,可以用来求最少需要安排的会议室
	static int canAttendMeeting(int[][] nums) {
		int  n = nums.length;
		int[] begins = new int[n];
		int[] end = new int[n];
		//将会议起始时间和结束时间单独拿出来,排序。
		for(int i = 0; i < n; ++i) {
			begins[i] = nums[i][0];
		}
		for(int i = 0; i < n; ++i) {
			end[i] = nums[i][1];
		}
		Arrays.sort(begins);
		Arrays.sort(end);;
		int res = 0;
		int i = 0;
		int j = 0;
		int count = 0;
		while(i < n && j < n) {
			//扫描到一个起点,加加
			if(begins[i] < end[j]) {
				count ++;
				i ++;
				//扫描到一个结束点,就减减。
			}else {
				count --;
				j ++;
			}
			res = Math.max(res, count);
		}
		return res;
	}
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/182198
推荐阅读
相关标签
  

闽ICP备14008679号