結果

問題 No.649 ここでちょっとQK!
ユーザー tamatotamato
提出日時 2020-05-04 12:39:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 453 ms / 3,000 ms
コード長 1,595 bytes
コンパイル時間 344 ms
コンパイル使用メモリ 82,816 KB
実行使用メモリ 180,560 KB
最終ジャッジ日時 2024-06-24 01:41:41
合計ジャッジ時間 10,212 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 39 ms
52,864 KB
testcase_03 AC 149 ms
102,520 KB
testcase_04 AC 282 ms
167,172 KB
testcase_05 AC 275 ms
167,260 KB
testcase_06 AC 218 ms
102,324 KB
testcase_07 AC 38 ms
52,864 KB
testcase_08 AC 38 ms
52,608 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 39 ms
52,352 KB
testcase_11 AC 39 ms
52,736 KB
testcase_12 AC 250 ms
124,464 KB
testcase_13 AC 249 ms
124,540 KB
testcase_14 AC 246 ms
124,668 KB
testcase_15 AC 265 ms
125,176 KB
testcase_16 AC 247 ms
124,724 KB
testcase_17 AC 270 ms
131,580 KB
testcase_18 AC 297 ms
127,644 KB
testcase_19 AC 319 ms
144,844 KB
testcase_20 AC 329 ms
147,228 KB
testcase_21 AC 350 ms
152,248 KB
testcase_22 AC 365 ms
156,296 KB
testcase_23 AC 387 ms
165,512 KB
testcase_24 AC 414 ms
167,028 KB
testcase_25 AC 423 ms
180,560 KB
testcase_26 AC 453 ms
161,800 KB
testcase_27 AC 50 ms
63,744 KB
testcase_28 AC 49 ms
62,976 KB
testcase_29 AC 48 ms
62,848 KB
testcase_30 AC 209 ms
113,572 KB
testcase_31 AC 204 ms
113,476 KB
testcase_32 AC 39 ms
52,736 KB
testcase_33 AC 39 ms
52,736 KB
testcase_34 AC 38 ms
52,864 KB
testcase_35 AC 38 ms
52,864 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

mod = 1000000007
eps = 10**-9


def main():
    import sys
    input = sys.stdin.buffer.readline

    class Bit:
        def __init__(self, n):
            self.size = n
            self.tree = [0] * (n + 1)

        def sum(self, i):
            s = 0
            while i > 0:
                s += self.tree[i]
                i -= i & -i
            return s

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

        def lower_bound(self, w):
            if w <= 0:
                return 0
            x = 0
            k = 1 << (self.size.bit_length() - 1)
            while k:
                if x + k <= self.size and self.tree[x + k] < w:
                    w -= self.tree[x + k]
                    x += k
                k >>= 1
            return x + 1

    Q, K = map(int, input().split())
    query = []
    V = set()
    for _ in range(Q):
        line = list(map(int, input().split()))
        if line[0] == 1:
            V.add(line[1])
        query.append(line)

    V = sorted(list(V))
    v2i = {v: i+1 for i, v in enumerate(V)}
    i2v = {i+1: v for i, v in enumerate(V)}

    N = len(V)
    if N == 0:
        for _ in range(Q):
            print(-1)
        exit()
    bit = Bit(N)
    for q in query:
        if q[0] == 1:
            v = q[1]
            bit.add(v2i[v], 1)
        else:
            j = bit.lower_bound(K)
            if j == N+1:
                print(-1)
            else:
                print(i2v[j])
                bit.add(j, -1)


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