Java로 구현한 1931번 회의실 배정 문제 풀이입니다. https://www.acmicpc.net/problem/1931 1931번: 회의실 배정 (1,4), (5,7), (8,11), (12,14) 를 이용할 수 있다. www.acmicpc.net import java.util.*; public class Main { public static void main(String[] args) throws Exception { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int[][] time = new int[n][2]; for (int i=0; i o2[1]) return 1; else { if (o1[0] < o2[0]) return -1;..