結果
問題 | No.580 旅館の予約計画 |
ユーザー | htensai |
提出日時 | 2020-02-17 16:26:48 |
言語 | Java21 (openjdk 21) |
結果 |
AC
|
実行時間 | 124 ms / 2,000 ms |
コード長 | 2,051 bytes |
コンパイル時間 | 2,355 ms |
コンパイル使用メモリ | 79,736 KB |
実行使用メモリ | 52,640 KB |
最終ジャッジ日時 | 2024-10-06 14:59:51 |
合計ジャッジ時間 | 6,858 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 55 ms
50,044 KB |
testcase_01 | AC | 55 ms
50,360 KB |
testcase_02 | AC | 55 ms
50,512 KB |
testcase_03 | AC | 57 ms
50,364 KB |
testcase_04 | AC | 58 ms
50,328 KB |
testcase_05 | AC | 58 ms
50,560 KB |
testcase_06 | AC | 59 ms
50,300 KB |
testcase_07 | AC | 59 ms
50,472 KB |
testcase_08 | AC | 60 ms
50,160 KB |
testcase_09 | AC | 61 ms
50,296 KB |
testcase_10 | AC | 62 ms
50,384 KB |
testcase_11 | AC | 62 ms
50,524 KB |
testcase_12 | AC | 88 ms
51,236 KB |
testcase_13 | AC | 66 ms
50,596 KB |
testcase_14 | AC | 90 ms
51,748 KB |
testcase_15 | AC | 123 ms
52,412 KB |
testcase_16 | AC | 124 ms
52,336 KB |
testcase_17 | AC | 115 ms
52,208 KB |
testcase_18 | AC | 119 ms
52,284 KB |
testcase_19 | AC | 117 ms
52,292 KB |
testcase_20 | AC | 122 ms
52,220 KB |
testcase_21 | AC | 113 ms
52,120 KB |
testcase_22 | AC | 111 ms
52,212 KB |
testcase_23 | AC | 110 ms
52,156 KB |
testcase_24 | AC | 123 ms
52,640 KB |
testcase_25 | AC | 110 ms
52,268 KB |
testcase_26 | AC | 57 ms
50,080 KB |
testcase_27 | AC | 58 ms
50,112 KB |
testcase_28 | AC | 57 ms
50,492 KB |
testcase_29 | AC | 57 ms
50,308 KB |
testcase_30 | AC | 113 ms
52,060 KB |
testcase_31 | AC | 123 ms
52,252 KB |
testcase_32 | AC | 122 ms
52,612 KB |
testcase_33 | AC | 122 ms
52,408 KB |
testcase_34 | AC | 117 ms
52,344 KB |
testcase_35 | AC | 57 ms
49,980 KB |
ソースコード
import java.util.*; import java.io.*; public class Main { public static void main (String[] args) throws Exception { BufferedReader br = new BufferedReader(new InputStreamReader(System.in)); String[] first = br.readLine().split(" ", 2); int m = Integer.parseInt(first[0]); int n = Integer.parseInt(first[1]); ArrayList<Customer> list = new ArrayList<>(); for (int i = 0; i < n; i++) { list.add(new Customer(i, br.readLine())); } Collections.sort(list, new Comparator<Customer>() { public int compare(Customer c1, Customer c2) { if (c1.left == c2.left) { return c1.right - c2.right; } else { return c1.left - c2.left; } } }); TreeSet<Customer> stays = new TreeSet<>(); int count = 0; for (Customer c : list) { while (stays.size() > 0 && stays.first().right < c.left) { stays.pollFirst(); } stays.add(c); if (stays.size() > m) { count++; stays.pollLast(); } } System.out.println(n - count); } static class Customer implements Comparable<Customer> { int idx; int left; int right; public Customer(int idx, String line) { this.idx = idx; String[] args = line.split(" ", 4); left = Integer.parseInt(args[0]) * 24 * 60; String[] in = args[1].split(":", 2); left += Integer.parseInt(in[0]) * 60; left += Integer.parseInt(in[1]); right = Integer.parseInt(args[2]) * 24 * 60; String[] out = args[3].split(":", 2); right += Integer.parseInt(out[0]) * 60; right += Integer.parseInt(out[1]); } public int hashCode() { return idx; } public int compareTo(Customer another) { if (right == another.right) { return idx - another.idx; } else { return right - another.right; } } } }