結果
問題 | No.59 鉄道の旅 |
ユーザー | takeya_okino |
提出日時 | 2019-07-07 22:30:49 |
言語 | Java21 (openjdk 21) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,233 bytes |
コンパイル時間 | 1,995 ms |
コンパイル使用メモリ | 77,116 KB |
実行使用メモリ | 70,156 KB |
最終ジャッジ日時 | 2024-10-05 15:19:44 |
合計ジャッジ時間 | 6,849 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 120 ms
60,464 KB |
testcase_01 | AC | 122 ms
60,328 KB |
testcase_02 | AC | 122 ms
60,336 KB |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | AC | 131 ms
60,260 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | AC | 230 ms
64,528 KB |
testcase_12 | AC | 504 ms
68,384 KB |
testcase_13 | WA | - |
testcase_14 | AC | 509 ms
70,156 KB |
testcase_15 | AC | 106 ms
59,304 KB |
ソースコード
import java.util.*; public class Main { static int N; static int[] dat; public static void main(String[] args) { Scanner sc = new Scanner(System.in); init(1000001); int n = sc.nextInt(); int k = sc.nextInt(); int ans = 0; for(int i = 0; i < n; i++) { int w = sc.nextInt(); if(w > 0) { int t = query(w, 1000001, 0, 0, N); if(t < k) { update(w, 1); ans++; } } else { if(dat[(-1) * w] > 0) { update((-1) * w, -1); ans--; } } } System.out.println(ans); } public static void init(int n_) { int n = 1; while(n < n_) { n *= 2; } N = n; dat = new int[2 * N - 1]; } public static void update(int k, int x) { int a = k + N - 1; dat[a] += x; while(a > 0) { a = (a - 1) / 2; dat[a] = dat[2 * a + 1] + dat[2 * a + 2]; } } public static int query(int a, int b, int k, int l, int r) { if((r <= a) || (l >= b)) return 0; if((a <= l) && (r <= b)) { return dat[k]; } else { int vl = query(a, b, 2 * k + 1, l, (l + r) / 2); int vr = query(a, b, 2 * k + 2, (l + r) / 2, r); return vl + vr; } } }