結果

問題 No.59 鉄道の旅
ユーザー aaaaaaaaaa2230aaaaaaaaaa2230
提出日時 2022-01-01 17:32:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,072 bytes
コンパイル時間 361 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 94,580 KB
最終ジャッジ日時 2024-10-10 08:37:18
合計ジャッジ時間 2,570 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
60,952 KB
testcase_01 AC 40 ms
60,492 KB
testcase_02 AC 41 ms
60,864 KB
testcase_03 AC 40 ms
61,584 KB
testcase_04 AC 144 ms
88,328 KB
testcase_05 AC 45 ms
61,284 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 WA -
testcase_11 AC 91 ms
83,896 KB
testcase_12 AC 112 ms
83,824 KB
testcase_13 AC 141 ms
89,004 KB
testcase_14 AC 156 ms
94,580 KB
testcase_15 AC 41 ms
59,536 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self, n):
        self.size = n
        self.tree = [0]*(n+1)
 
    def build(self, list):
        self.tree[1:] = list.copy()
        for i in range(self.size+1):
            j = i + (i & (-i))
            if j < self.size+1:
                self.tree[j] += self.tree[i]

    def sum(self, i):
        # [0, i) の要素の総和を返す
        s = 0
        while i>0:
            s += self.tree[i]
            i -= i & -i
        return s
    # 0 index を 1 index に変更  転倒数を求めるなら1を足していく
    def add(self, i, x):
        i += 1
        while i <= self.size:
            self.tree[i] += x
            i += i & -i



n,k = map(int,input().split())
bit = BIT(10**6+5)
dic = {}
s = 0
for i in range(n):
    w = int(input())
    if w >= 0:
        if s - bit.sum(w) >= k:
            continue
        bit.add(w,1)
        s += 1
        dic[w] = dic.get(w,0)+1
    else:
        w *= -1
        if dic.get(w,0) > 0:
            bit.add(w,-1)
            dic[w] -= 1
            s -= 2
print(bit.sum(10**6+5)) 
0