結果

問題 No.59 鉄道の旅
ユーザー yuki2006yuki2006
提出日時 2014-11-05 22:53:19
言語 Python2
(2.7.18)
結果
AC  
実行時間 463 ms / 5,000 ms
コード長 578 bytes
コンパイル時間 42 ms
コンパイル使用メモリ 6,784 KB
実行使用メモリ 14,044 KB
最終ジャッジ日時 2024-06-07 00:26:05
合計ジャッジ時間 2,702 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
13,876 KB
testcase_01 AC 22 ms
13,952 KB
testcase_02 AC 19 ms
13,928 KB
testcase_03 AC 19 ms
13,696 KB
testcase_04 AC 422 ms
13,924 KB
testcase_05 AC 19 ms
13,808 KB
testcase_06 AC 21 ms
13,824 KB
testcase_07 AC 19 ms
14,044 KB
testcase_08 AC 62 ms
13,872 KB
testcase_09 AC 63 ms
13,948 KB
testcase_10 AC 63 ms
13,952 KB
testcase_11 AC 44 ms
14,020 KB
testcase_12 AC 260 ms
13,960 KB
testcase_13 AC 437 ms
13,804 KB
testcase_14 AC 463 ms
14,044 KB
testcase_15 AC 22 ms
13,928 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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

MX = 1000000
data = [0] * (MX + 1)


def BIT_Add(x, a):
    while x <= MX:
        data[x] += a
        x += x & (-x)


def BIT_Sum(x):
    total = 0
    while x > 0:
        total += data[x]
        x -= x & (-x)
    return total


for _ in xrange(N):
    W = int(raw_input())

    if W > 0:
        W -= 1
        if BIT_Sum(MX - W) < K:
            BIT_Add(MX - W, 1)
    elif W < 0:
        W += 1

        if BIT_Sum(MX + W) - BIT_Sum(MX + W - 1) > 0:
            BIT_Add(MX + W, -1)

print BIT_Sum(MX)
0