結果
問題 | No.59 鉄道の旅 |
ユーザー | rlangevin |
提出日時 | 2023-08-09 08:59:09 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 157 ms / 5,000 ms |
コード長 | 1,242 bytes |
コンパイル時間 | 189 ms |
コンパイル使用メモリ | 81,596 KB |
実行使用メモリ | 92,180 KB |
最終ジャッジ日時 | 2024-11-14 15:36:12 |
合計ジャッジ時間 | 2,231 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 44 ms
69,064 KB |
testcase_01 | AC | 45 ms
68,552 KB |
testcase_02 | AC | 45 ms
67,900 KB |
testcase_03 | AC | 46 ms
68,144 KB |
testcase_04 | AC | 157 ms
91,956 KB |
testcase_05 | AC | 50 ms
73,604 KB |
testcase_06 | AC | 51 ms
75,328 KB |
testcase_07 | AC | 46 ms
70,368 KB |
testcase_08 | AC | 93 ms
92,180 KB |
testcase_09 | AC | 96 ms
92,132 KB |
testcase_10 | AC | 96 ms
92,032 KB |
testcase_11 | AC | 88 ms
91,552 KB |
testcase_12 | AC | 140 ms
91,856 KB |
testcase_13 | AC | 139 ms
91,804 KB |
testcase_14 | AC | 151 ms
91,824 KB |
testcase_15 | AC | 44 ms
68,772 KB |
ソースコード
class Fenwick_Tree: def __init__(self, n): self._n = n self.data = [0] * n def add(self, p, x): assert 0 <= p < self._n p += 1 while p <= self._n: self.data[p - 1] += x p += p & -p def sum(self, l, r): assert 0 <= l <= r <= self._n return self._sum(r) - self._sum(l) def _sum(self, r): s = 0 while r > 0: s += self.data[r - 1] r -= r & -r return s def get(self, k): k += 1 x, r = 0, 1 while r < self._n: r <<= 1 len = r while len: if x + len - 1 < self._n: if self.data[x + len - 1] < k: k -= self.data[x + len - 1] x += len len >>= 1 return x N, K = map(int, input().split()) M = 10 ** 6 + 5 T = Fenwick_Tree(M) L = [0] * M for i in range(N): w = int(input()) if w > 0: if T.sum(w, M) >= K: continue else: L[w] += 1 T.add(w, 1) else: w = -w if L[w] == 0: continue else: L[w] -= 1 T.add(w, -1) print(T.sum(0, M))