結果

問題 No.2220 Range Insert & Point Mex
ユーザー rlangevinrlangevin
提出日時 2023-02-17 22:49:15
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 679 ms / 2,000 ms
コード長 1,496 bytes
コンパイル時間 487 ms
コンパイル使用メモリ 82,500 KB
実行使用メモリ 136,320 KB
最終ジャッジ日時 2024-07-21 12:51:29
合計ジャッジ時間 14,486 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 51 ms
70,312 KB
testcase_01 AC 52 ms
69,656 KB
testcase_02 AC 52 ms
70,404 KB
testcase_03 AC 55 ms
69,360 KB
testcase_04 AC 53 ms
69,856 KB
testcase_05 AC 54 ms
70,020 KB
testcase_06 AC 56 ms
70,972 KB
testcase_07 AC 54 ms
69,884 KB
testcase_08 AC 58 ms
70,392 KB
testcase_09 AC 57 ms
69,856 KB
testcase_10 AC 58 ms
71,132 KB
testcase_11 AC 54 ms
69,208 KB
testcase_12 AC 54 ms
70,524 KB
testcase_13 AC 612 ms
109,536 KB
testcase_14 AC 679 ms
109,780 KB
testcase_15 AC 633 ms
109,660 KB
testcase_16 AC 599 ms
109,912 KB
testcase_17 AC 591 ms
109,664 KB
testcase_18 AC 607 ms
109,788 KB
testcase_19 AC 605 ms
109,636 KB
testcase_20 AC 401 ms
109,892 KB
testcase_21 AC 409 ms
109,820 KB
testcase_22 AC 413 ms
109,772 KB
testcase_23 AC 291 ms
109,700 KB
testcase_24 AC 281 ms
107,000 KB
testcase_25 AC 321 ms
106,504 KB
testcase_26 AC 304 ms
136,320 KB
testcase_27 AC 269 ms
123,976 KB
testcase_28 AC 95 ms
95,872 KB
testcase_29 AC 94 ms
96,692 KB
testcase_30 AC 95 ms
96,672 KB
testcase_31 AC 175 ms
116,820 KB
testcase_32 AC 277 ms
104,664 KB
testcase_33 AC 430 ms
104,488 KB
testcase_34 AC 523 ms
108,888 KB
testcase_35 AC 674 ms
108,288 KB
testcase_36 AC 509 ms
108,816 KB
testcase_37 AC 642 ms
108,360 KB
testcase_38 AC 376 ms
108,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
from heapq import *
from collections import *

class QuasiBinaryTree:
    def __init__(self, rule="min"):
        if rule == "max":
            self.pm = -1
        else:
            self.pm = 1
 
        self.inf = 10**18
        self.P = [self.inf]
        self.Q = []
 
    def insert(self, x):
        heappush(self.P, x * self.pm)
 
    def erase(self, x):
        heappush(self.Q, x * self.pm)
 
    def top(self):
        while self.Q and (self.P[0] == self.Q[0]):
            heappop(self.P)
            heappop(self.Q)
        return self.P[0] * self.pm

def f(r, a):
    return r * M + a

N = int(readline())
M = 10 ** 9 + 7
lst = []
for i in range(N):
    L, R, A = map(int, readline().split())
    lst.append((L, R, A))
    
lst.sort(reverse=True)
Q = int(readline())
X = list(map(int, readline().split()))

H = []
S = QuasiBinaryTree("min")
for i in range(101010):
    S.insert(i)
    
cnt = defaultdict(int)
for x in X:
    while lst:
        L, R, A = lst[-1]
        if A >= 100010:
            lst.pop()
            continue
        if L <= x:
            heappush(H, (R, A))
            cnt[A] += 1
            if cnt[A] == 1:
                S.erase(A)
            lst.pop()
        else:
            break
            
    while H:
        R, A = H[0]
        if R < x:
            cnt[A] -= 1
            if cnt[A] == 0:
                S.insert(A)
            heappop(H)
        else:
            break
           
    print(S.top())
0