結果

問題 No.649 ここでちょっとQK!
ユーザー yuly3yuly3
提出日時 2020-04-22 11:16:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 649 ms / 3,000 ms
コード長 2,686 bytes
コンパイル時間 243 ms
コンパイル使用メモリ 81,980 KB
実行使用メモリ 172,948 KB
最終ジャッジ日時 2024-10-11 02:48:23
合計ジャッジ時間 12,678 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 47 ms
54,400 KB
testcase_01 AC 44 ms
54,400 KB
testcase_02 AC 41 ms
54,400 KB
testcase_03 AC 229 ms
115,216 KB
testcase_04 AC 325 ms
165,588 KB
testcase_05 AC 348 ms
165,592 KB
testcase_06 AC 292 ms
116,864 KB
testcase_07 AC 43 ms
54,400 KB
testcase_08 AC 42 ms
54,528 KB
testcase_09 AC 42 ms
54,144 KB
testcase_10 AC 42 ms
54,656 KB
testcase_11 AC 48 ms
54,144 KB
testcase_12 AC 386 ms
125,056 KB
testcase_13 AC 365 ms
125,152 KB
testcase_14 AC 370 ms
125,568 KB
testcase_15 AC 366 ms
125,272 KB
testcase_16 AC 317 ms
124,696 KB
testcase_17 AC 380 ms
129,792 KB
testcase_18 AC 405 ms
136,380 KB
testcase_19 AC 433 ms
141,836 KB
testcase_20 AC 464 ms
143,872 KB
testcase_21 AC 522 ms
152,576 KB
testcase_22 AC 531 ms
145,496 KB
testcase_23 AC 547 ms
152,184 KB
testcase_24 AC 574 ms
145,032 KB
testcase_25 AC 627 ms
172,948 KB
testcase_26 AC 649 ms
146,948 KB
testcase_27 AC 65 ms
68,864 KB
testcase_28 AC 65 ms
68,992 KB
testcase_29 AC 60 ms
67,328 KB
testcase_30 AC 325 ms
111,736 KB
testcase_31 AC 302 ms
110,976 KB
testcase_32 AC 42 ms
54,400 KB
testcase_33 AC 41 ms
53,888 KB
testcase_34 AC 41 ms
54,400 KB
testcase_35 AC 42 ms
54,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
from collections import defaultdict
from operator import add

sys.setrecursionlimit(10 ** 7)
rl = sys.stdin.readline


class SegmentTree:
    def __init__(self, init_value: list, segfunc, ide_ele):
        n = len(init_value)
        self.N0 = 1 << (n - 1).bit_length()
        self.ide_ele = ide_ele
        self.data = [ide_ele] * (2 * self.N0)
        self.segfunc = segfunc
        
        for i, x in enumerate(init_value):
            self.data[i + self.N0 - 1] = x
        for i in range(self.N0 - 2, -1, -1):
            self.data[i] = self.segfunc(self.data[2 * i + 1], self.data[2 * i + 2])
    
    def update(self, k, x):
        k += self.N0 - 1
        ################################################################
        self.data[k] = x
        ################################################################
        while k:
            k = (k - 1) // 2
            self.data[k] = self.segfunc(self.data[k * 2 + 1], self.data[k * 2 + 2])
    
    def query(self, left, right):
        L = left + self.N0
        R = right + self.N0
        res = self.ide_ele
        ################################################################
        
        while L < R:
            if L & 1:
                res = self.segfunc(res, self.data[L - 1])
                L += 1
            if R & 1:
                R -= 1
                res = self.segfunc(res, self.data[R - 1])
            L >>= 1
            R >>= 1
        
        ################################################################
        return res


def solve():
    Q, K = map(int, rl().split())
    query = [list(map(int, rl().split())) for _ in range(Q)]
    
    compress = []
    for i in range(Q):
        if query[i][0] == 1:
            compress.append(query[i][1])
    compress.sort()
    v_to_idx = {vi: idx for idx, vi in enumerate(compress)}
    counter = defaultdict(int)
    for vi in compress:
        counter[vi] += 1
    N = len(compress)
    
    seg_tree = SegmentTree([0] * N, add, 0)
    ans = []
    for qi in query:
        if qi[0] == 1:
            val = qi[1]
            seg_tree.update(v_to_idx[val] - counter[val] + 1, 1)
            counter[val] -= 1
        else:
            if seg_tree.query(0, N) < K:
                ans.append(-1)
            else:
                ok, ng = N - 1, -1
                while 1 < ok - ng:
                    mid = (ok + ng) // 2
                    if K <= seg_tree.query(0, mid + 1):
                        ok = mid
                    else:
                        ng = mid
                ans.append(compress[ok])
                seg_tree.update(ok, 0)
    print(*ans, sep='\n')


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