結果

問題 No.649 ここでちょっとQK!
ユーザー ああいいああいい
提出日時 2022-01-09 22:42:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 843 bytes
コンパイル時間 173 ms
コンパイル使用メモリ 82,396 KB
実行使用メモリ 167,684 KB
最終ジャッジ日時 2024-11-14 10:34:53
合計ジャッジ時間 9,515 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 WA -
testcase_02 WA -
testcase_03 AC 120 ms
83,596 KB
testcase_04 AC 251 ms
167,684 KB
testcase_05 AC 246 ms
167,292 KB
testcase_06 AC 182 ms
85,448 KB
testcase_07 AC 38 ms
53,108 KB
testcase_08 AC 36 ms
53,352 KB
testcase_09 AC 37 ms
53,760 KB
testcase_10 WA -
testcase_11 WA -
testcase_12 AC 249 ms
117,008 KB
testcase_13 AC 240 ms
116,760 KB
testcase_14 AC 250 ms
117,104 KB
testcase_15 AC 264 ms
116,992 KB
testcase_16 AC 263 ms
117,124 KB
testcase_17 AC 281 ms
123,384 KB
testcase_18 AC 304 ms
128,808 KB
testcase_19 AC 325 ms
135,044 KB
testcase_20 AC 346 ms
136,756 KB
testcase_21 AC 358 ms
145,712 KB
testcase_22 AC 382 ms
144,308 KB
testcase_23 AC 408 ms
152,172 KB
testcase_24 AC 422 ms
139,980 KB
testcase_25 AC 447 ms
166,996 KB
testcase_26 AC 473 ms
145,092 KB
testcase_27 AC 52 ms
64,768 KB
testcase_28 AC 50 ms
64,084 KB
testcase_29 AC 50 ms
62,680 KB
testcase_30 AC 200 ms
103,372 KB
testcase_31 AC 219 ms
105,292 KB
testcase_32 AC 38 ms
52,760 KB
testcase_33 AC 37 ms
53,280 KB
testcase_34 AC 38 ms
52,408 KB
testcase_35 AC 37 ms
53,668 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