結果

問題 No.59 鉄道の旅
ユーザー H3PO4H3PO4
提出日時 2020-04-22 22:33:24
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
AC  
実行時間 717 ms / 5,000 ms
コード長 608 bytes
コンパイル時間 191 ms
コンパイル使用メモリ 12,544 KB
実行使用メモリ 18,608 KB
最終ジャッジ日時 2024-10-12 06:58:20
合計ジャッジ時間 4,451 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
18,560 KB
testcase_01 AC 42 ms
18,560 KB
testcase_02 AC 42 ms
18,560 KB
testcase_03 AC 43 ms
18,516 KB
testcase_04 AC 644 ms
18,432 KB
testcase_05 AC 41 ms
18,516 KB
testcase_06 AC 43 ms
18,560 KB
testcase_07 AC 40 ms
18,548 KB
testcase_08 AC 108 ms
18,512 KB
testcase_09 AC 107 ms
18,432 KB
testcase_10 AC 110 ms
18,560 KB
testcase_11 AC 81 ms
18,560 KB
testcase_12 AC 392 ms
18,560 KB
testcase_13 AC 717 ms
18,500 KB
testcase_14 AC 711 ms
18,560 KB
testcase_15 AC 40 ms
18,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Bit:
    def __init__(self, n):
        self.size = n
        self.tree = [0] * (n + 1)

    def sum(self, i):
        s = 0
        while i > 0:
            s += self.tree[i]
            i -= i & -i
        return s

    def add(self, i, x):
        while i <= self.size:
            self.tree[i] += x
            i += i & -i


N, K = map(int, input().split())

MAX = 1000000
B = Bit(MAX)
for _ in range(N):
    W = int(input())
    if W > 0:
        if B.sum(MAX) - B.sum(W - 1) < K:
            B.add(W, 1)
    else:
        if B.sum(-W) - B.sum(-W - 1):
            B.add(-W, -1)
print(B.sum(MAX))
0