結果

問題 No.59 鉄道の旅
ユーザー dangodango
提出日時 2023-07-09 20:46:28
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 146 ms / 5,000 ms
コード長 456 bytes
コンパイル時間 490 ms
コンパイル使用メモリ 82,364 KB
実行使用メモリ 92,420 KB
最終ジャッジ日時 2024-07-23 18:18:58
合計ジャッジ時間 2,773 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
69,596 KB
testcase_01 AC 44 ms
68,928 KB
testcase_02 AC 44 ms
67,864 KB
testcase_03 AC 45 ms
67,948 KB
testcase_04 AC 146 ms
92,292 KB
testcase_05 AC 46 ms
68,392 KB
testcase_06 AC 49 ms
73,960 KB
testcase_07 AC 44 ms
68,520 KB
testcase_08 AC 87 ms
92,092 KB
testcase_09 AC 86 ms
92,420 KB
testcase_10 AC 87 ms
91,724 KB
testcase_11 AC 79 ms
91,692 KB
testcase_12 AC 117 ms
92,324 KB
testcase_13 AC 130 ms
91,684 KB
testcase_14 AC 136 ms
91,788 KB
testcase_15 AC 45 ms
67,492 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, K = map(int, input().split())
M = 10 ** 6 + 1
B = [0] * M
C = [0] * M
def A(a, w):
    while a < M:
        B[a] += w
        a += a & (-a)
def S(a):
    r = 0
    while a > 0:
        r += B[a]
        a -= a & (-a)
    return r
while N:
    N -= 1
    w = int(input())
    if w > 0:
        if S(M - w) < K:
            A(M - w, 1)
            C[w] += 1
    else:
        if C[-w] > 0:
            A(M + w, -1)
            C[-w] -= 1

print(S(M - 1))
0