結果
問題 | No.59 鉄道の旅 |
ユーザー | htensai |
提出日時 | 2019-12-06 13:39:19 |
言語 | Java (openjdk 23) |
結果 |
AC
|
実行時間 | 654 ms / 5,000 ms |
コード長 | 1,562 bytes |
コンパイル時間 | 2,051 ms |
コンパイル使用メモリ | 79,332 KB |
実行使用メモリ | 65,628 KB |
最終ジャッジ日時 | 2024-12-23 05:14:42 |
合計ジャッジ時間 | 7,545 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 105 ms
53,044 KB |
testcase_01 | AC | 104 ms
52,896 KB |
testcase_02 | AC | 114 ms
53,948 KB |
testcase_03 | AC | 119 ms
53,920 KB |
testcase_04 | AC | 654 ms
61,240 KB |
testcase_05 | AC | 121 ms
53,948 KB |
testcase_06 | AC | 129 ms
54,040 KB |
testcase_07 | AC | 124 ms
54,160 KB |
testcase_08 | AC | 265 ms
58,520 KB |
testcase_09 | AC | 275 ms
59,256 KB |
testcase_10 | AC | 267 ms
59,332 KB |
testcase_11 | AC | 216 ms
57,488 KB |
testcase_12 | AC | 503 ms
59,648 KB |
testcase_13 | AC | 613 ms
62,680 KB |
testcase_14 | AC | 564 ms
65,628 KB |
testcase_15 | AC | 104 ms
52,788 KB |
ソースコード
import java.util.*; public class Main { public static void main (String[] args) { Scanner sc = new Scanner(System.in); int n = sc.nextInt(); int k = sc.nextInt(); TreeMap<Integer, Integer> map = new TreeMap<>(); int count = 0; int max = 0; int maxCount = 0; for (int i = 0; i < n; i++) { int x = sc.nextInt(); if (x > 0) { if (count >= k && max >= x) { continue; } if (map.containsKey(x)) { map.put(x, map.get(x) + 1); } else { map.put(x, 1); } if (count < k) { count++; if (count == k) { max = map.firstKey(); maxCount = 0; } } else { count++; maxCount++; if (map.get(max) <= maxCount) { max = map.higherKey(max); maxCount = 0; } } } else { x *= -1; if (map.containsKey(x)) { int cnt = map.get(x); if (cnt == 1) { map.remove(x); } else { map.put(x, cnt - 1); } count--; } else { continue; } if (count >= k && max <= x) { maxCount--; if (maxCount < 0) { max = map.lowerKey(max); maxCount = map.get(max) - 1; } } } } System.out.println(count); } }