結果

問題 No.649 ここでちょっとQK!
ユーザー toyuzukotoyuzuko
提出日時 2020-03-20 17:35:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 466 ms / 3,000 ms
コード長 1,844 bytes
コンパイル時間 404 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 167,356 KB
最終ジャッジ日時 2024-12-14 11:22:24
合計ジャッジ時間 11,480 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,616 KB
testcase_01 AC 37 ms
53,292 KB
testcase_02 AC 39 ms
54,504 KB
testcase_03 AC 188 ms
94,660 KB
testcase_04 AC 284 ms
153,232 KB
testcase_05 AC 277 ms
153,028 KB
testcase_06 AC 243 ms
110,900 KB
testcase_07 AC 37 ms
53,544 KB
testcase_08 AC 38 ms
53,004 KB
testcase_09 AC 38 ms
54,340 KB
testcase_10 AC 38 ms
54,372 KB
testcase_11 AC 37 ms
52,468 KB
testcase_12 AC 239 ms
118,760 KB
testcase_13 AC 226 ms
118,892 KB
testcase_14 AC 228 ms
118,896 KB
testcase_15 AC 250 ms
119,016 KB
testcase_16 AC 243 ms
118,896 KB
testcase_17 AC 279 ms
124,460 KB
testcase_18 AC 295 ms
130,136 KB
testcase_19 AC 314 ms
134,492 KB
testcase_20 AC 328 ms
138,988 KB
testcase_21 AC 349 ms
145,632 KB
testcase_22 AC 375 ms
138,984 KB
testcase_23 AC 401 ms
157,884 KB
testcase_24 AC 412 ms
138,396 KB
testcase_25 AC 422 ms
167,356 KB
testcase_26 AC 466 ms
156,216 KB
testcase_27 AC 50 ms
64,844 KB
testcase_28 AC 50 ms
64,376 KB
testcase_29 AC 48 ms
62,664 KB
testcase_30 AC 207 ms
103,208 KB
testcase_31 AC 210 ms
102,288 KB
testcase_32 AC 38 ms
52,464 KB
testcase_33 AC 38 ms
53,780 KB
testcase_34 AC 38 ms
53,856 KB
testcase_35 AC 41 ms
52,868 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class Set(): #BinaryIndexedTree
    def __init__(self, valuelist):
        self.n = len(valuelist)
        self.value = sorted(valuelist)
        self.comp = {v : k for k, v in enumerate(self.value, 1)}
        self.bit = BinaryIndexedTree(self.n)

    def insert(self, x, k=1):
        self.bit.add(self.comp[x], k)

    def delete(self, x, k=1):
        self.bit.add(self.comp[x], -k)

    def count(self, x):
        return self.bit.get(self.comp[x])

    def get(self, k):
        return self.value[self.bit.bisect_left(k)-1]

class BinaryIndexedTree():  #1-indexed
    def __init__(self, n):
        self.n = n
        self.tree = [0 for _ in range(n + 1)]

    def sum(self, index):
        res = 0
        while index:
            res += self.tree[index]
            index -= index & -index
        return res

    def get(self, index):
        return self.sum(index) - self.sum(index - 1)

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

    def bisect_left(self, x):
        if x <= 0: return 0
        res, tmp = 0, 2**((self.n).bit_length() - 1)
        while tmp:
            if res + tmp <= self.n and self.tree[res + tmp] < x:
                x -= self.tree[res + tmp]
                res += tmp
            tmp >>= 1
        if res >= self.n:
            return self.n
        return res + 1

import sys
input = sys.stdin.readline

INF = 10**18 + 1

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

query = []
value = [INF]

for _ in range(Q):
    q = tuple(map(int, input().split()))
    if q[0] == 1:
        value.append(q[1])
    query.append(q)

S = Set(set(value))

for q in query:
    if q[0] == 1:
        S.insert(q[1])
    else:
        v = S.get(K)
        if v == INF:
            print(-1)
        else:
            print(v)
            S.delete(v)
0