結果

問題 No.580 旅館の予約計画
ユーザー 37zigen37zigen
提出日時 2017-10-22 23:55:11
言語 Java21
(openjdk 21)
結果
AC  
実行時間 248 ms / 2,000 ms
コード長 1,884 bytes
コンパイル時間 2,693 ms
コンパイル使用メモリ 82,744 KB
実行使用メモリ 46,396 KB
最終ジャッジ日時 2024-11-21 14:37:12
合計ジャッジ時間 10,296 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 126 ms
41,376 KB
testcase_01 AC 124 ms
41,408 KB
testcase_02 AC 127 ms
41,504 KB
testcase_03 AC 139 ms
41,400 KB
testcase_04 AC 140 ms
41,472 KB
testcase_05 AC 140 ms
41,420 KB
testcase_06 AC 151 ms
41,832 KB
testcase_07 AC 163 ms
41,552 KB
testcase_08 AC 174 ms
41,588 KB
testcase_09 AC 169 ms
42,012 KB
testcase_10 AC 175 ms
41,732 KB
testcase_11 AC 176 ms
42,320 KB
testcase_12 AC 191 ms
43,428 KB
testcase_13 AC 183 ms
42,568 KB
testcase_14 AC 204 ms
44,068 KB
testcase_15 AC 248 ms
45,852 KB
testcase_16 AC 228 ms
46,396 KB
testcase_17 AC 237 ms
46,296 KB
testcase_18 AC 229 ms
45,432 KB
testcase_19 AC 244 ms
46,208 KB
testcase_20 AC 228 ms
45,516 KB
testcase_21 AC 248 ms
45,712 KB
testcase_22 AC 221 ms
45,448 KB
testcase_23 AC 224 ms
45,416 KB
testcase_24 AC 228 ms
45,344 KB
testcase_25 AC 226 ms
45,692 KB
testcase_26 AC 143 ms
41,588 KB
testcase_27 AC 139 ms
41,772 KB
testcase_28 AC 138 ms
41,376 KB
testcase_29 AC 136 ms
41,640 KB
testcase_30 AC 226 ms
45,748 KB
testcase_31 AC 229 ms
45,292 KB
testcase_32 AC 223 ms
45,816 KB
testcase_33 AC 236 ms
45,176 KB
testcase_34 AC 225 ms
45,404 KB
testcase_35 AC 137 ms
41,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import java.util.ArrayList;
import java.util.Arrays;
import java.util.Comparator;
import java.util.PriorityQueue;
import java.util.Scanner;

class Solution {
	public static void main(String[] args) {
		new Solution().run();
	}

	class Edge implements Comparable<Edge> {
		int src;
		int dst;

		public Edge(int src, int dst) {
			this.src = src;
			this.dst = dst;
		}

		@Override
		public int compareTo(Edge o) {
			return Integer.compare(src, o.src);
		}
	}

	void run() {
		Scanner sc = new Scanner(System.in);
		int n = sc.nextInt();
		int m = sc.nextInt();
		int[][] v = new int[m][2];
		for (int i = 0; i < m; ++i) {
			int v1 = sc.nextInt();
			String[] s1 = sc.next().split(":");
			int v2 = sc.nextInt();
			String[] s2 = sc.next().split(":");
			int src = v1 * 10000 + new Integer(s1[0]) * 100 + new Integer(s1[1]);
			int dst = v2 * 10000 + new Integer(s2[0]) * 100 + new Integer(s2[1]);
			v[i][0] = src;
			v[i][1] = dst;
		}

		Arrays.sort(v, new Comparator<int[]>() {
			@Override
			public int compare(int[] o1, int[] o2) {
				return Integer.compare(o1[0], o2[0]);
			}
		});
		int ans = 0;
		int cnt = 0;
		ArrayList<Edge> pending = new ArrayList<>();
		for (int i = 0; i < m; ++i) {
			int src = v[i][0];
			int dst = v[i][1];
			pending.add(new Edge(v[i][0], v[i][1]));
			++cnt;
			if (cnt <= n) {
				continue;
			} else {
				Edge tmp = null;
				for (int j = 0; j < pending.size(); ++j) {
					if (pending.get(j).dst < src) {
						pending.remove(j);
						--j;
						--cnt;
						++ans;
					}
					if (j >= 0 && (tmp == null || tmp.dst < pending.get(j).dst)) {
						tmp = pending.get(j);
					}
				}
				if (cnt > n) {
					pending.remove(tmp);
					--cnt;
					if (cnt > n)
						throw new AssertionError();
				}
			}
		}
		ans += cnt;
		System.out.println(ans);
	}

	void tr(Object... objects) {
		System.out.println(Arrays.deepToString(objects));
	}
}
0