結果

問題 No.59 鉄道の旅
ユーザー はむ吉🐹はむ吉🐹
提出日時 2016-09-15 17:52:45
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 758 ms / 5,000 ms
コード長 1,064 bytes
コンパイル時間 111 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 30,284 KB
最終ジャッジ日時 2024-06-07 02:29:16
合計ジャッジ時間 3,607 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 31 ms
10,624 KB
testcase_02 AC 31 ms
10,624 KB
testcase_03 AC 34 ms
10,880 KB
testcase_04 AC 537 ms
24,192 KB
testcase_05 AC 38 ms
18,432 KB
testcase_06 AC 38 ms
18,432 KB
testcase_07 AC 38 ms
18,304 KB
testcase_08 AC 114 ms
19,456 KB
testcase_09 AC 89 ms
19,072 KB
testcase_10 AC 96 ms
19,200 KB
testcase_11 AC 56 ms
10,880 KB
testcase_12 AC 272 ms
11,520 KB
testcase_13 AC 549 ms
26,572 KB
testcase_14 AC 758 ms
30,284 KB
testcase_15 AC 38 ms
18,432 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#!/usr/bin/env python3

import collections


class FenwickTree(object):

    def __init__(self, num_elems):
        self.num_elems = num_elems
        self.data = [0] * num_elems

    def sum_to(self, end):
        s = 0
        i = end - 1
        while i >= 0:
            s += self.data[i]
            i = (i & (i + 1)) - 1
        return s

    def sum_range(self, start, end):
        return self.sum_to(end) - self.sum_to(start)

    def add(self, idx, x):
        while idx < self.num_elems:
            self.data[idx] += x
            idx |= idx + 1


def main():
    n, k = map(int, input().split())
    ws = [int(input()) for _ in range(n)]
    max_weight = max(map(abs, ws))
    packs = collections.Counter()
    ft = FenwickTree(max_weight + 1)
    for w in ws:
        if w > 0 and ft.sum_range(w, max_weight + 1) < k:
            ft.add(w, 1)
            packs[w] += 1
        elif w < 0 and packs[abs(w)] > 0:
            ft.add(abs(w), -1)
            packs[abs(w)] -= 1
    print(ft.sum_to(max_weight + 1))


if __name__ == '__main__':
    main()
0