結果
問題 | No.59 鉄道の旅 |
ユーザー | tktk_snsn |
提出日時 | 2020-12-25 18:51:54 |
言語 | PyPy3 (7.3.15) |
結果 |
RE
|
実行時間 | - |
コード長 | 1,281 bytes |
コンパイル時間 | 397 ms |
コンパイル使用メモリ | 82,460 KB |
実行使用メモリ | 78,284 KB |
最終ジャッジ日時 | 2024-09-22 12:16:52 |
合計ジャッジ時間 | 2,314 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 38 ms
53,904 KB |
testcase_01 | AC | 36 ms
53,636 KB |
testcase_02 | AC | 37 ms
53,012 KB |
testcase_03 | AC | 38 ms
53,428 KB |
testcase_04 | RE | - |
testcase_05 | RE | - |
testcase_06 | RE | - |
testcase_07 | RE | - |
testcase_08 | RE | - |
testcase_09 | RE | - |
testcase_10 | RE | - |
testcase_11 | AC | 61 ms
78,284 KB |
testcase_12 | AC | 82 ms
77,988 KB |
testcase_13 | RE | - |
testcase_14 | RE | - |
testcase_15 | RE | - |
ソースコード
import sys input = sys.stdin.buffer.readline sys.setrecursionlimit(10 ** 7) class fenwick_tree(object): def __init__(self, n): self.n = n self.log = n.bit_length() self.data = [0] * n def __sum(self, r): s = 0 while r > 0: s += self.data[r - 1] r -= r & -r return s def add(self, p, x): """ a[p] += xを行う""" p += 1 while p <= self.n: self.data[p - 1] += x p += p & -p def sum(self, l, r): """a[l] + a[l+1] + .. + a[r-1]を返す""" return self.__sum(r) - self.__sum(l) def lower_bound(self, x): """a[0] + a[1] + .. a[i] >= x となる最小のiを返す""" if x <= 0: return -1 i = 0 k = 1 << self.log while k: if i + k <= self.n and self.data[i + k - 1] < x: x -= self.data[i + k - 1] i += k k >>= 1 return i U = 10 ** 5 + 100 N, K = map(int, input().split()) bit = fenwick_tree(U) for _ in range(N): w = int(input()) if w > 0: if bit.sum(w, U) < K: bit.add(w, 1) else: w = -w if bit.sum(w, w + 1): bit.add(w, -1) print(bit.sum(0, U))