結果

問題 No.2292 Interval Union Find
ユーザー t98slidert98slider
提出日時 2023-03-30 02:09:49
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,678 ms / 5,000 ms
コード長 5,581 bytes
コンパイル時間 183 ms
コンパイル使用メモリ 13,184 KB
実行使用メモリ 26,196 KB
最終ジャッジ日時 2024-09-22 02:32:34
合計ジャッジ時間 61,673 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
11,772 KB
testcase_01 AC 39 ms
11,768 KB
testcase_02 AC 39 ms
11,776 KB
testcase_03 AC 38 ms
11,896 KB
testcase_04 AC 930 ms
12,156 KB
testcase_05 AC 1,139 ms
12,280 KB
testcase_06 AC 992 ms
12,156 KB
testcase_07 AC 1,159 ms
12,280 KB
testcase_08 AC 1,014 ms
12,028 KB
testcase_09 AC 1,018 ms
12,028 KB
testcase_10 AC 984 ms
12,156 KB
testcase_11 AC 965 ms
12,028 KB
testcase_12 AC 1,084 ms
12,152 KB
testcase_13 AC 947 ms
12,028 KB
testcase_14 AC 955 ms
12,156 KB
testcase_15 AC 1,029 ms
12,028 KB
testcase_16 AC 1,029 ms
12,156 KB
testcase_17 AC 1,101 ms
12,024 KB
testcase_18 AC 2,004 ms
25,592 KB
testcase_19 AC 1,516 ms
23,620 KB
testcase_20 AC 2,678 ms
26,196 KB
testcase_21 AC 1,536 ms
19,768 KB
testcase_22 AC 1,524 ms
19,908 KB
testcase_23 AC 1,562 ms
20,068 KB
testcase_24 AC 1,564 ms
19,604 KB
testcase_25 AC 1,589 ms
19,960 KB
testcase_26 AC 1,558 ms
20,140 KB
testcase_27 AC 1,551 ms
20,216 KB
testcase_28 AC 1,557 ms
20,124 KB
testcase_29 AC 1,574 ms
20,220 KB
testcase_30 AC 1,561 ms
19,908 KB
testcase_31 AC 1,555 ms
19,980 KB
testcase_32 AC 1,570 ms
19,972 KB
testcase_33 AC 1,573 ms
19,952 KB
testcase_34 AC 1,567 ms
20,152 KB
testcase_35 AC 1,537 ms
20,152 KB
testcase_36 AC 1,554 ms
19,892 KB
testcase_37 AC 1,527 ms
19,908 KB
testcase_38 AC 1,553 ms
20,100 KB
testcase_39 AC 1,544 ms
20,184 KB
testcase_40 AC 1,532 ms
20,040 KB
testcase_41 AC 703 ms
12,156 KB
testcase_42 AC 723 ms
12,160 KB
testcase_43 AC 775 ms
12,156 KB
testcase_44 AC 873 ms
12,280 KB
testcase_45 AC 881 ms
12,280 KB
testcase_46 AC 900 ms
12,152 KB
testcase_47 AC 1,040 ms
12,024 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