結果

問題 No.2292 Interval Union Find
ユーザー t98slidert98slider
提出日時 2023-03-30 02:10:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 961 ms / 5,000 ms
コード長 5,581 bytes
コンパイル時間 220 ms
コンパイル使用メモリ 82,408 KB
実行使用メモリ 124,428 KB
最終ジャッジ日時 2024-09-22 02:31:27
合計ジャッジ時間 33,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
67,840 KB
testcase_01 AC 64 ms
67,456 KB
testcase_02 AC 65 ms
67,968 KB
testcase_03 AC 66 ms
67,840 KB
testcase_04 AC 625 ms
86,728 KB
testcase_05 AC 961 ms
92,236 KB
testcase_06 AC 675 ms
87,864 KB
testcase_07 AC 911 ms
90,424 KB
testcase_08 AC 703 ms
88,124 KB
testcase_09 AC 589 ms
85,580 KB
testcase_10 AC 698 ms
86,896 KB
testcase_11 AC 675 ms
86,852 KB
testcase_12 AC 902 ms
89,536 KB
testcase_13 AC 632 ms
86,384 KB
testcase_14 AC 675 ms
87,852 KB
testcase_15 AC 713 ms
87,324 KB
testcase_16 AC 657 ms
87,500 KB
testcase_17 AC 642 ms
86,132 KB
testcase_18 AC 416 ms
110,320 KB
testcase_19 AC 467 ms
93,280 KB
testcase_20 AC 679 ms
124,428 KB
testcase_21 AC 713 ms
94,044 KB
testcase_22 AC 721 ms
94,020 KB
testcase_23 AC 739 ms
93,388 KB
testcase_24 AC 767 ms
93,656 KB
testcase_25 AC 741 ms
93,764 KB
testcase_26 AC 775 ms
94,056 KB
testcase_27 AC 731 ms
93,596 KB
testcase_28 AC 684 ms
92,596 KB
testcase_29 AC 721 ms
93,836 KB
testcase_30 AC 720 ms
93,580 KB
testcase_31 AC 733 ms
94,200 KB
testcase_32 AC 714 ms
92,396 KB
testcase_33 AC 707 ms
93,140 KB
testcase_34 AC 704 ms
94,320 KB
testcase_35 AC 688 ms
93,052 KB
testcase_36 AC 685 ms
93,928 KB
testcase_37 AC 723 ms
93,276 KB
testcase_38 AC 719 ms
93,060 KB
testcase_39 AC 703 ms
92,964 KB
testcase_40 AC 738 ms
94,548 KB
testcase_41 AC 297 ms
82,672 KB
testcase_42 AC 368 ms
83,968 KB
testcase_43 AC 483 ms
85,656 KB
testcase_44 AC 589 ms
86,260 KB
testcase_45 AC 632 ms
87,728 KB
testcase_46 AC 696 ms
87,440 KB
testcase_47 AC 632 ms
86,672 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# https://github.com/tatyam-prime/SortedSet/blob/main/SortedSet.py
import math
from sys import stdin
from bisect import bisect_left, bisect_right
from typing import Generic, Iterable, Iterator, TypeVar, Optional, List
T = TypeVar('T')

class SortedSet(Generic[T]):
    BUCKET_RATIO = 50
    REBUILD_RATIO = 170

    def _build(self, a=None) -> None:
        "Evenly divide `a` into buckets."
        if a is None: a = list(self)
        size = self.size = len(a)
        bucket_size = int(math.ceil(math.sqrt(size / self.BUCKET_RATIO)))
        self.a = [a[size * i // bucket_size : size * (i + 1) // bucket_size] for i in range(bucket_size)]
    
    def __init__(self, a: Iterable[T] = []) -> None:
        "Make a new SortedSet from iterable. / O(N) if sorted and unique / O(N log N)"
        a = list(a)
        if not all(a[i] < a[i + 1] for i in range(len(a) - 1)):
            a = sorted(set(a))
        self._build(a)

    def __iter__(self) -> Iterator[T]:
        for i in self.a:
            for j in i: yield j

    def __reversed__(self) -> Iterator[T]:
        for i in reversed(self.a):
            for j in reversed(i): yield j
    
    def __len__(self) -> int:
        return self.size
    
    def __repr__(self) -> str:
        return "SortedSet" + str(self.a)
    
    def __str__(self) -> str:
        s = str(list(self))
        return "{" + s[1 : len(s) - 1] + "}"

    def _find_bucket(self, x: T) -> List[T]:
        "Find the bucket which should contain x. self must not be empty."
        for a in self.a:
            if x <= a[-1]: return a
        return a

    def __contains__(self, x: T) -> bool:
        if self.size == 0: return False
        a = self._find_bucket(x)
        i = bisect_left(a, x)
        return i != len(a) and a[i] == x

    def add(self, x: T) -> bool:
        "Add an element and return True if added. / O(√N)"
        if self.size == 0:
            self.a = [[x]]
            self.size = 1
            return True
        a = self._find_bucket(x)
        i = bisect_left(a, x)
        if i != len(a) and a[i] == x: return False
        a.insert(i, x)
        self.size += 1
        if len(a) > len(self.a) * self.REBUILD_RATIO:
            self._build()
        return True

    def discard(self, x: T) -> bool:
        "Remove an element and return True if removed. / O(√N)"
        if self.size == 0: return False
        a = self._find_bucket(x)
        i = bisect_left(a, x)
        if i == len(a) or a[i] != x: return False
        a.pop(i)
        self.size -= 1
        if len(a) == 0: self._build()
        return True
    
    def lt(self, x: T) -> Optional[T]:
        "Find the largest element < x, or None if it doesn't exist."
        for a in reversed(self.a):
            if a[0] < x:
                return a[bisect_left(a, x) - 1]

    def le(self, x: T) -> Optional[T]:
        "Find the largest element <= x, or None if it doesn't exist."
        for a in reversed(self.a):
            if a[0] <= x:
                return a[bisect_right(a, x) - 1]

    def gt(self, x: T) -> Optional[T]:
        "Find the smallest element > x, or None if it doesn't exist."
        for a in self.a:
            if a[-1] > x:
                return a[bisect_right(a, x)]

    def ge(self, x: T) -> Optional[T]:
        "Find the smallest element >= x, or None if it doesn't exist."
        for a in self.a:
            if a[-1] >= x:
                return a[bisect_left(a, x)]
    
    def __getitem__(self, x: int) -> T:
        "Return the x-th element, or IndexError if it doesn't exist."
        if x < 0: x += self.size
        if x < 0: raise IndexError
        for a in self.a:
            if x < len(a): return a[x]
            x -= len(a)
        raise IndexError
    
    def index(self, x: T) -> int:
        "Count the number of elements < x."
        ans = 0
        for a in self.a:
            if a[-1] >= x:
                return ans + bisect_left(a, x)
            ans += len(a)
        return ans

    def index_right(self, x: T) -> int:
        "Count the number of elements <= x."
        ans = 0
        for a in self.a:
            if a[-1] > x:
                return ans + bisect_right(a, x)
            ans += len(a)
        return ans

N, Q = map(int, input().split())

lst = (N + 2) * (N + 2) + N + 1
S = SortedSet([lst])

for _ in range(Q):
    query = list(map(int, stdin.readline().split()))
    if query[0] == 1:
        L, R = query[1], query[2]

        v = S.ge(L * (N + 2))
        l, r = v % (N + 2), v // (N + 2)

        while l <= R:
            L = min(L, l)
            R = max(R, r)
            S.discard(v)
            v = S.ge(L * (N + 2))
            l, r = v % (N + 2), v // (N + 2)
        
        S.add(R * (N + 2) + L)
    elif query[0] == 2:
        L, R = query[1], query[2]

        v = S.ge((L + 1) * (N + 2))
        l, r = v % (N + 2), v // (N + 2)
        
        while l < R:
            if l < L: S.add(L * (N + 2) + l)
            if R < r: S.add(r * (N + 2) + R)
            S.discard(v)
            v = S.ge((L + 1) * (N + 2))
            l, r = v % (N + 2), v // (N + 2)

    elif query[0] == 3:
        u, v = query[1], query[2]
        if u > v : u, v = v, u
        tmp = S.ge(u * (N + 2))
        l, r = tmp % (N + 2), tmp // (N + 2)
        
        if l <= u and v <= r:
            print(1)
        else:
            print(1 if u == v else 0)
    else:
        v = query[1]
        tmp = S.gt(v * (N + 2))
        l, r = tmp % (N + 2), tmp // (N + 2)
        if l <= v and v <= r:
            print(r - l + 1)
        else:
            print(1)
0