結果

問題 No.649 ここでちょっとQK!
ユーザー ああいいああいい
提出日時 2022-01-09 22:53:52
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 425 ms / 3,000 ms
コード長 844 bytes
コンパイル時間 350 ms
コンパイル使用メモリ 82,200 KB
実行使用メモリ 168,156 KB
最終ジャッジ日時 2024-11-14 10:35:02
合計ジャッジ時間 8,482 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
52,820 KB
testcase_01 AC 36 ms
52,476 KB
testcase_02 AC 36 ms
54,288 KB
testcase_03 AC 115 ms
83,988 KB
testcase_04 AC 248 ms
168,156 KB
testcase_05 AC 244 ms
167,952 KB
testcase_06 AC 178 ms
85,568 KB
testcase_07 AC 36 ms
53,192 KB
testcase_08 AC 36 ms
52,956 KB
testcase_09 AC 36 ms
53,508 KB
testcase_10 AC 36 ms
53,136 KB
testcase_11 AC 36 ms
53,344 KB
testcase_12 AC 235 ms
117,256 KB
testcase_13 AC 225 ms
116,984 KB
testcase_14 AC 227 ms
117,364 KB
testcase_15 AC 240 ms
117,380 KB
testcase_16 AC 234 ms
117,388 KB
testcase_17 AC 257 ms
123,516 KB
testcase_18 AC 283 ms
128,432 KB
testcase_19 AC 300 ms
134,920 KB
testcase_20 AC 316 ms
136,628 KB
testcase_21 AC 338 ms
145,440 KB
testcase_22 AC 351 ms
144,824 KB
testcase_23 AC 366 ms
151,784 KB
testcase_24 AC 388 ms
140,116 KB
testcase_25 AC 399 ms
167,244 KB
testcase_26 AC 425 ms
145,084 KB
testcase_27 AC 51 ms
64,068 KB
testcase_28 AC 48 ms
64,288 KB
testcase_29 AC 49 ms
63,400 KB
testcase_30 AC 188 ms
103,628 KB
testcase_31 AC 201 ms
105,556 KB
testcase_32 AC 37 ms
53,056 KB
testcase_33 AC 37 ms
53,008 KB
testcase_34 AC 38 ms
52,948 KB
testcase_35 AC 37 ms
52,740 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
r = sys.stdin
Q,K = map(int,r.readline().split())

l = []
s = set()
for _ in range(Q):
    a = list(map(int,r.readline().split()))
    if a[0] == 1:
        l.append(a[1])
        s.add(a[1])
    else:
        l.append(-2)
D = {v:i+1 for i,v in enumerate(sorted(s))}
rD = {i+1:v for i,v in enumerate(sorted(s))}

n = len(D)
bit = [0] * (n +1)
def add(i,x):
    while i <= n:
        bit[i] += x
        i += i &-i
def lb(w):
    if w <= 0:return 0
    k = 1
    while k <= n:
        k <<= 1
    k >>= 1
    x = 0
    while k > 0:
        if x + k <= n and bit[x+k] < w:
            w -= bit[x+k]
            x += k
        k >>= 1
    return x + 1

for v in l:
    if v != -2:
        add(D[v],1)
    else:
        x = lb(K)
        if x == n + 1:
            print(-1)
        else:
            print(rD[x])
            add(x,-1)

0