結果

問題 No.2796 Small Matryoshka
ユーザー LyricalMaestroLyricalMaestro
提出日時 2024-10-30 00:36:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 911 ms / 2,000 ms
コード長 1,993 bytes
コンパイル時間 748 ms
コンパイル使用メモリ 82,328 KB
実行使用メモリ 203,636 KB
最終ジャッジ日時 2024-10-30 00:36:12
合計ジャッジ時間 10,144 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,708 KB
testcase_01 AC 37 ms
52,528 KB
testcase_02 AC 38 ms
52,616 KB
testcase_03 AC 38 ms
53,512 KB
testcase_04 AC 38 ms
52,776 KB
testcase_05 AC 206 ms
98,624 KB
testcase_06 AC 911 ms
203,636 KB
testcase_07 AC 51 ms
62,472 KB
testcase_08 AC 582 ms
130,512 KB
testcase_09 AC 661 ms
177,256 KB
testcase_10 AC 718 ms
178,112 KB
testcase_11 AC 765 ms
189,664 KB
testcase_12 AC 269 ms
81,592 KB
testcase_13 AC 126 ms
77,448 KB
testcase_14 AC 262 ms
84,124 KB
testcase_15 AC 137 ms
78,012 KB
testcase_16 AC 170 ms
79,872 KB
testcase_17 AC 636 ms
132,628 KB
testcase_18 AC 709 ms
184,432 KB
testcase_19 AC 273 ms
108,476 KB
testcase_20 AC 377 ms
121,696 KB
testcase_21 AC 624 ms
139,892 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

## https://yukicoder.me/problems/no/2796

MAX_INT = 10 ** 18


class BinaryIndexTree:
    """
    フェニック木(BinaryIndexTree)の基本的な機能を実装したクラス
    """
    def __init__(self, size):
        self.size = size
        self.array = [0] * (size + 1)
    
    def add(self, x, a):
        index = x
        while index <= self.size:
            self.array[index] += a
            index += index & (-index)
    
    def sum(self, x):
        index = x
        ans = 0
        while index > 0:
            ans += self.array[index]
            index -= index & (-index)
        return ans

    def least_upper_bound(self, value):
        if self.sum(self.size) < value:
            return -1
        elif value <= 0:
            return 0

        m = 1
        while m < self.size:
            m *= 2

        k = 0
        k_sum = 0
        while m > 0:
            k0 = k + m
            if k0 < self.size:
                if k_sum + self.array[k0] < value:
                    k_sum += self.array[k0]
                    k += m
            m //= 2
        if k < self.size:
            return k + 1
        else:
            return -1


def main():
    N = int(input())
    rR = []
    for _ in range(N):
        r, R = map(int, input().split())
        rR.append((r, R))

    rR.sort(key=lambda x : x[0], reverse=True)

    # 座標圧縮
    r_set = set()
    for r, R in rR:
        r_set.add(r)
        r_set.add(R)
    r_list = list(r_set)
    r_list.sort()
    r_map = {}
    for i, r in enumerate(r_list):
        r_map[r] = i + 1

    # BinaryIndexTree
    bit = BinaryIndexTree(len(r_list))
    for r, R in rR:
        x = bit.sum(bit.size) - bit.sum(r_map[R] - 1)
        if x == 0:
            bit.add(r_map[r], 1)
        else:
            r_ = bit.least_upper_bound(bit.sum(r_map[R] - 1) + 1)
            bit.add(r_, -1)
            bit.add(r_map[r], 1)
    
    a = bit.sum(bit.size)
    print(a - 1)




    



if __name__ == "__main__":
    main()
0