結果

問題 No.649 ここでちょっとQK!
ユーザー Kenya ITOHKenya ITOH
提出日時 2023-05-06 13:00:09
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 440 ms / 3,000 ms
コード長 1,398 bytes
コンパイル時間 147 ms
コンパイル使用メモリ 82,296 KB
実行使用メモリ 167,968 KB
最終ジャッジ日時 2024-11-23 21:27:38
合計ジャッジ時間 10,000 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,480 KB
testcase_01 AC 38 ms
51,968 KB
testcase_02 AC 35 ms
52,096 KB
testcase_03 AC 199 ms
97,152 KB
testcase_04 AC 309 ms
167,968 KB
testcase_05 AC 299 ms
167,552 KB
testcase_06 AC 258 ms
96,896 KB
testcase_07 AC 36 ms
52,480 KB
testcase_08 AC 35 ms
52,096 KB
testcase_09 AC 36 ms
52,736 KB
testcase_10 AC 36 ms
52,352 KB
testcase_11 AC 37 ms
52,352 KB
testcase_12 AC 255 ms
116,824 KB
testcase_13 AC 251 ms
116,608 KB
testcase_14 AC 251 ms
116,864 KB
testcase_15 AC 260 ms
116,608 KB
testcase_16 AC 255 ms
116,952 KB
testcase_17 AC 267 ms
109,228 KB
testcase_18 AC 295 ms
126,464 KB
testcase_19 AC 312 ms
131,584 KB
testcase_20 AC 332 ms
133,632 KB
testcase_21 AC 349 ms
139,008 KB
testcase_22 AC 360 ms
140,824 KB
testcase_23 AC 385 ms
143,232 KB
testcase_24 AC 401 ms
139,648 KB
testcase_25 AC 421 ms
156,632 KB
testcase_26 AC 440 ms
136,712 KB
testcase_27 AC 62 ms
66,944 KB
testcase_28 AC 60 ms
66,432 KB
testcase_29 AC 58 ms
65,024 KB
testcase_30 AC 221 ms
107,648 KB
testcase_31 AC 226 ms
107,392 KB
testcase_32 AC 36 ms
52,224 KB
testcase_33 AC 36 ms
52,096 KB
testcase_34 AC 35 ms
52,480 KB
testcase_35 AC 35 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#BITを用いた実装
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):
        '''
        a1+a2+...+ax>=wとなるような最小のxを求める
        https://algo-logic.info/binary-indexed-tree/
        '''
        if w<=0:
            return 0
        else:
            x = 0
            r = 1
            while r < self.size:
                r = r<<1
            lenth = r
            S = 0
            while lenth > 0:
                if lenth + x < self.size and self.tree[x+lenth] < w:
                    w -= self.tree[x+lenth]
                    x += lenth
                lenth = lenth>>1
            return x+1

Q,K = map(int,input().split())
query = [list(map(int,input().split())) for _ in range(Q)]

V = set()
for q in query:
    if q[0] == 1:
        V.add(q[1])

V = sorted(V)
d = {v:i for i,v in enumerate(V)}

bit = Bit(len(V))

for q in query:
    if q[0] == 1:
        bit.add(d[q[1]]+1,1)
    else:
        if bit.sum(len(V)) < K:
            print(-1)
        else:
            x = bit.lower_bound(K)
            print(V[x-1])
            bit.add(x,-1)
0