結果

問題 No.649 ここでちょっとQK!
ユーザー brthyyjpbrthyyjp
提出日時 2020-03-20 17:22:10
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 563 ms / 3,000 ms
コード長 1,122 bytes
コンパイル時間 271 ms
コンパイル使用メモリ 81,972 KB
実行使用メモリ 134,536 KB
最終ジャッジ日時 2024-05-08 08:23:50
合計ジャッジ時間 11,733 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 40 ms
52,736 KB
testcase_02 AC 39 ms
51,968 KB
testcase_03 AC 141 ms
87,788 KB
testcase_04 AC 321 ms
134,536 KB
testcase_05 AC 327 ms
134,348 KB
testcase_06 AC 215 ms
97,676 KB
testcase_07 AC 39 ms
52,468 KB
testcase_08 AC 38 ms
52,224 KB
testcase_09 AC 39 ms
52,480 KB
testcase_10 AC 38 ms
52,352 KB
testcase_11 AC 39 ms
52,224 KB
testcase_12 AC 304 ms
99,192 KB
testcase_13 AC 312 ms
98,856 KB
testcase_14 AC 312 ms
99,200 KB
testcase_15 AC 313 ms
98,816 KB
testcase_16 AC 284 ms
99,328 KB
testcase_17 AC 321 ms
101,632 KB
testcase_18 AC 350 ms
106,112 KB
testcase_19 AC 375 ms
108,032 KB
testcase_20 AC 387 ms
110,864 KB
testcase_21 AC 426 ms
113,860 KB
testcase_22 AC 444 ms
116,352 KB
testcase_23 AC 466 ms
119,664 KB
testcase_24 AC 497 ms
123,368 KB
testcase_25 AC 519 ms
127,488 KB
testcase_26 AC 563 ms
132,608 KB
testcase_27 AC 62 ms
67,328 KB
testcase_28 AC 62 ms
67,072 KB
testcase_29 AC 60 ms
65,152 KB
testcase_30 AC 251 ms
95,084 KB
testcase_31 AC 250 ms
95,084 KB
testcase_32 AC 38 ms
52,224 KB
testcase_33 AC 38 ms
51,968 KB
testcase_34 AC 39 ms
52,352 KB
testcase_35 AC 40 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

q, k = map(int, input().split())
Q = []
V = []
for i in range(q):
    query = list(map(int, input().split()))
    if len(query) == 1:
        c = query[0]
        v = 0
    else:
        c, v = query
        V.append(v)
    Q.append((c, v))

V = list(set(V))
V.sort()
toid = {}
import bisect
for v in V:
    toid[v] = bisect.bisect_left(V, v)+1

n = len(V)
bit = [0]*(n+1)

def bit_query(i):
    res = 0
    while i > 0:
        res += bit[i]
        i -= i & (-i)
    return res

def bit_update(i, x):
    while i <= n:
        bit[i] += x
        i += i & (-i)

def ok(i):
    if i <= 0:
        return False
    else:
        return bit_query(i) >= k

for i in range(q):
    c, v = Q[i]
    if c == 1:
        id = toid[v]
        bit_update(id, 1)
    else:
        if bit_query(n) < k:
            print(-1)
        else:
            l = 0
            r = n
            while l+1 < r:
                mid = (l+r)//2
                if ok(mid):
                    r = mid
                else:
                    l = mid
            print(V[r-1])
            bit_update(r, -1)
0