結果

問題 No.649 ここでちょっとQK!
ユーザー toyuzukotoyuzuko
提出日時 2020-03-20 17:35:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 509 ms / 3,000 ms
コード長 1,844 bytes
コンパイル時間 230 ms
コンパイル使用メモリ 81,792 KB
実行使用メモリ 167,076 KB
最終ジャッジ日時 2024-05-08 08:41:13
合計ジャッジ時間 9,624 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,608 KB
testcase_01 AC 39 ms
51,968 KB
testcase_02 AC 42 ms
52,608 KB
testcase_03 AC 205 ms
94,396 KB
testcase_04 AC 311 ms
153,080 KB
testcase_05 AC 315 ms
153,128 KB
testcase_06 AC 266 ms
110,520 KB
testcase_07 AC 39 ms
52,352 KB
testcase_08 AC 38 ms
52,480 KB
testcase_09 AC 40 ms
52,352 KB
testcase_10 AC 40 ms
52,480 KB
testcase_11 AC 39 ms
51,968 KB
testcase_12 AC 271 ms
118,612 KB
testcase_13 AC 266 ms
118,756 KB
testcase_14 AC 266 ms
118,772 KB
testcase_15 AC 294 ms
119,024 KB
testcase_16 AC 276 ms
119,020 KB
testcase_17 AC 310 ms
124,076 KB
testcase_18 AC 338 ms
130,084 KB
testcase_19 AC 362 ms
134,120 KB
testcase_20 AC 375 ms
138,980 KB
testcase_21 AC 385 ms
145,760 KB
testcase_22 AC 415 ms
138,756 KB
testcase_23 AC 455 ms
157,724 KB
testcase_24 AC 454 ms
138,056 KB
testcase_25 AC 492 ms
167,076 KB
testcase_26 AC 509 ms
156,516 KB
testcase_27 AC 52 ms
63,488 KB
testcase_28 AC 52 ms
62,720 KB
testcase_29 AC 52 ms
61,952 KB
testcase_30 AC 238 ms
103,212 KB
testcase_31 AC 238 ms
102,296 KB
testcase_32 AC 40 ms
51,968 KB
testcase_33 AC 39 ms
52,352 KB
testcase_34 AC 40 ms
52,352 KB
testcase_35 AC 39 ms
52,480 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