結果

問題 No.2220 Range Insert & Point Mex
ユーザー ああいいああいい
提出日時 2023-02-18 18:36:47
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 973 ms / 2,000 ms
コード長 1,902 bytes
コンパイル時間 248 ms
コンパイル使用メモリ 82,188 KB
実行使用メモリ 108,592 KB
最終ジャッジ日時 2024-07-21 13:01:25
合計ジャッジ時間 20,406 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
55,036 KB
testcase_01 AC 46 ms
55,864 KB
testcase_02 AC 43 ms
55,064 KB
testcase_03 AC 47 ms
62,116 KB
testcase_04 AC 45 ms
55,256 KB
testcase_05 AC 50 ms
62,956 KB
testcase_06 AC 48 ms
61,376 KB
testcase_07 AC 51 ms
61,716 KB
testcase_08 AC 49 ms
61,904 KB
testcase_09 AC 49 ms
62,756 KB
testcase_10 AC 47 ms
62,396 KB
testcase_11 AC 46 ms
60,400 KB
testcase_12 AC 47 ms
61,836 KB
testcase_13 AC 968 ms
104,060 KB
testcase_14 AC 970 ms
103,152 KB
testcase_15 AC 966 ms
103,048 KB
testcase_16 AC 968 ms
103,808 KB
testcase_17 AC 973 ms
103,932 KB
testcase_18 AC 958 ms
103,296 KB
testcase_19 AC 964 ms
103,212 KB
testcase_20 AC 738 ms
104,756 KB
testcase_21 AC 768 ms
104,616 KB
testcase_22 AC 760 ms
105,268 KB
testcase_23 AC 621 ms
108,592 KB
testcase_24 AC 501 ms
105,756 KB
testcase_25 AC 486 ms
96,588 KB
testcase_26 AC 575 ms
100,988 KB
testcase_27 AC 350 ms
97,052 KB
testcase_28 AC 269 ms
90,240 KB
testcase_29 AC 90 ms
91,960 KB
testcase_30 AC 88 ms
92,236 KB
testcase_31 AC 487 ms
103,468 KB
testcase_32 AC 327 ms
98,992 KB
testcase_33 AC 395 ms
99,656 KB
testcase_34 AC 817 ms
101,540 KB
testcase_35 AC 893 ms
101,588 KB
testcase_36 AC 833 ms
98,900 KB
testcase_37 AC 909 ms
100,820 KB
testcase_38 AC 422 ms
101,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#BIT plus ver
class BITplus:
    def __init__(self,N):
        self.N = N
        self.bit = [0] * (self.N+1)
    def add(self,i,x):
        while i <= self.N:
            self.bit[i] += x
            i += i & -i
    def fold(self,i):
        ans = 0
        while i > 0:
            ans += self.bit[i]
            i -= i & -i
        return ans
    def lb(self,w):
        if w <= 0:return 0
        x = 0
        k = 1
        while k <= self.N:
            k <<= 1
        k >>= 1
        while k:
            if x + k <= self.N and self.bit[x+k] < w:
                w -= self.bit[x+k]
                x += k
            k >>= 1
        return x + 1

    #サイズ N の配列をいれる
    """
    def build(self,seq):
        bit = self.bit
        N = self.N
        for i in range(N):
            bit[i+1] = seq[i]
        for i in range(1,N+1):
            if i + (i & -1) <= N:
                bit[i + (i & -i)] += bit[i]
    """

N = int(input())
query = []
for _ in range(N):
    l,r,a = map(int,input().split())
    query.append((l,a))
    query.append((r + 1,~a))
query.sort(reverse = True)
Q = int(input())
X = list(map(int,input().split()))

C = 10 ** 5
bit = BITplus(C + 1)
from collections import defaultdict
d = defaultdict(int)

def calc():
    if 0 not in d or d[0] == 0:
        return 0
    end = C + 1
    start = 0
    while end - start > 1:
        mid = end + start >> 1
        u = bit.fold(mid + 1)
        if u <= mid:
            end = mid
        else:
            start = mid
    return start + 1
for x in X:
    while query and query[-1][0] <= x:
        k,a = query.pop()
        if a < 0:
            a = ~a
            if a > C:continue
            d[a] -= 1
            if d[a] == 0:
                bit.add(a + 1,-1)
        else:
            if a > C:continue
            d[a] += 1
            if d[a] == 1:
                bit.add(a + 1,1)
    print(calc())
0