結果

問題 No.1675 Strange Minimum Query
ユーザー yudai1102jpyudai1102jp
提出日時 2021-09-10 23:27:19
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 6,990 bytes
コンパイル時間 1,473 ms
コンパイル使用メモリ 86,988 KB
実行使用メモリ 133,324 KB
最終ジャッジ日時 2023-09-02 22:14:34
合計ジャッジ時間 40,034 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 160 ms
80,268 KB
testcase_01 AC 166 ms
80,172 KB
testcase_02 AC 163 ms
80,180 KB
testcase_03 AC 950 ms
103,228 KB
testcase_04 AC 896 ms
102,772 KB
testcase_05 AC 349 ms
90,184 KB
testcase_06 AC 1,068 ms
105,496 KB
testcase_07 AC 1,111 ms
107,808 KB
testcase_08 AC 181 ms
82,192 KB
testcase_09 AC 283 ms
85,420 KB
testcase_10 AC 761 ms
116,140 KB
testcase_11 AC 459 ms
106,428 KB
testcase_12 AC 805 ms
117,124 KB
testcase_13 AC 853 ms
130,248 KB
testcase_14 AC 1,023 ms
128,152 KB
testcase_15 WA -
testcase_16 AC 158 ms
80,508 KB
testcase_17 AC 699 ms
96,880 KB
testcase_18 AC 766 ms
100,260 KB
testcase_19 AC 835 ms
116,016 KB
testcase_20 AC 1,254 ms
120,048 KB
testcase_21 AC 1,174 ms
123,620 KB
testcase_22 AC 1,367 ms
127,944 KB
testcase_23 AC 1,190 ms
109,784 KB
testcase_24 AC 1,119 ms
114,072 KB
testcase_25 AC 998 ms
105,912 KB
testcase_26 AC 743 ms
103,116 KB
testcase_27 AC 1,069 ms
124,028 KB
testcase_28 AC 825 ms
112,400 KB
testcase_29 AC 736 ms
113,064 KB
testcase_30 AC 734 ms
102,736 KB
testcase_31 AC 1,378 ms
121,768 KB
testcase_32 AC 1,669 ms
133,324 KB
testcase_33 AC 1,629 ms
132,616 KB
testcase_34 AC 1,734 ms
132,816 KB
testcase_35 AC 1,587 ms
131,896 KB
testcase_36 AC 1,679 ms
130,832 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import typing


def _ceil_pow2(n: int) -> int:
    x = 0
    while (1 << x) < n:
        x += 1

    return x


def _bsf(n: int) -> int:
    x = 0
    while n % 2 == 0:
        x += 1
        n //= 2

    return x


class LazySegTree:
    def __init__(
            self,
            op: typing.Callable[[typing.Any, typing.Any], typing.Any],
            e: typing.Any,
            mapping: typing.Callable[[typing.Any, typing.Any], typing.Any],
            composition: typing.Callable[[typing.Any, typing.Any], typing.Any],
            id_: typing.Any,
            v: typing.Union[int, typing.List[typing.Any]]) -> None:
        self._op = op
        self._e = e
        self._mapping = mapping
        self._composition = composition
        self._id = id_

        if isinstance(v, int):
            v = [e] * v

        self._n = len(v)
        self._log = _ceil_pow2(self._n)
        self._size = 1 << self._log
        self._d = [e] * (2 * self._size)
        self._lz = [self._id] * self._size
        for i in range(self._n):
            self._d[self._size + i] = v[i]
        for i in range(self._size - 1, 0, -1):
            self._update(i)

    def set(self, p: int, x: typing.Any) -> None:
        assert 0 <= p < self._n

        p += self._size
        for i in range(self._log, 0, -1):
            self._push(p >> i)
        self._d[p] = x
        for i in range(1, self._log + 1):
            self._update(p >> i)

    def get(self, p: int) -> typing.Any:
        assert 0 <= p < self._n

        p += self._size
        for i in range(self._log, 0, -1):
            self._push(p >> i)
        return self._d[p]

    def prod(self, left: int, right: int) -> typing.Any:
        assert 0 <= left <= right <= self._n

        if left == right:
            return self._e

        left += self._size
        right += self._size

        for i in range(self._log, 0, -1):
            if ((left >> i) << i) != left:
                self._push(left >> i)
            if ((right >> i) << i) != right:
                self._push(right >> i)

        sml = self._e
        smr = self._e
        while left < right:
            if left & 1:
                sml = self._op(sml, self._d[left])
                left += 1
            if right & 1:
                right -= 1
                smr = self._op(self._d[right], smr)
            left >>= 1
            right >>= 1

        return self._op(sml, smr)

    def all_prod(self) -> typing.Any:
        return self._d[1]

    def apply(self, left: int, right: typing.Optional[int] = None,
              f: typing.Optional[typing.Any] = None) -> None:
        assert f is not None

        if right is None:
            p = left
            assert 0 <= left < self._n

            p += self._size
            for i in range(self._log, 0, -1):
                self._push(p >> i)
            self._d[p] = self._mapping(f, self._d[p])
            for i in range(1, self._log + 1):
                self._update(p >> i)
        else:
            assert 0 <= left <= right <= self._n
            if left == right:
                return

            left += self._size
            right += self._size

            for i in range(self._log, 0, -1):
                if ((left >> i) << i) != left:
                    self._push(left >> i)
                if ((right >> i) << i) != right:
                    self._push((right - 1) >> i)

            l2 = left
            r2 = right
            while left < right:
                if left & 1:
                    self._all_apply(left, f)
                    left += 1
                if right & 1:
                    right -= 1
                    self._all_apply(right, f)
                left >>= 1
                right >>= 1
            left = l2
            right = r2

            for i in range(1, self._log + 1):
                if ((left >> i) << i) != left:
                    self._update(left >> i)
                if ((right >> i) << i) != right:
                    self._update((right - 1) >> i)

    def max_right(
            self, left: int, g: typing.Callable[[typing.Any], bool]) -> int:
        assert 0 <= left <= self._n
        assert g(self._e)

        if left == self._n:
            return self._n

        left += self._size
        for i in range(self._log, 0, -1):
            self._push(left >> i)

        sm = self._e
        first = True
        while first or (left & -left) != left:
            first = False
            while left % 2 == 0:
                left >>= 1
            if not g(self._op(sm, self._d[left])):
                while left < self._size:
                    self._push(left)
                    left *= 2
                    if g(self._op(sm, self._d[left])):
                        sm = self._op(sm, self._d[left])
                        left += 1
                return left - self._size
            sm = self._op(sm, self._d[left])
            left += 1

        return self._n

    def min_left(self, right: int, g: typing.Any) -> int:
        assert 0 <= right <= self._n
        assert g(self._e)

        if right == 0:
            return 0

        right += self._size
        for i in range(self._log, 0, -1):
            self._push((right - 1) >> i)

        sm = self._e
        first = True
        while first or (right & -right) != right:
            first = False
            right -= 1
            while right > 1 and right % 2:
                right >>= 1
            if not g(self._op(self._d[right], sm)):
                while right < self._size:
                    self._push(right)
                    right = 2 * right + 1
                    if g(self._op(self._d[right], sm)):
                        sm = self._op(self._d[right], sm)
                        right -= 1
                return right + 1 - self._size
            sm = self._op(self._d[right], sm)

        return 0

    def _update(self, k: int) -> None:
        self._d[k] = self._op(self._d[2 * k], self._d[2 * k + 1])

    def _all_apply(self, k: int, f: typing.Any) -> None:
        self._d[k] = self._mapping(f, self._d[k])
        if k < self._size:
            self._lz[k] = self._composition(f, self._lz[k])

    def _push(self, k: int) -> None:
        self._all_apply(2 * k, self._lz[k])
        self._all_apply(2 * k + 1, self._lz[k])
        self._lz[k] = self._id


def op(x, y):
    return min(x, y)


e = int(1e9)


def mapping(f, x):
    if f == e:
        return x
    return f


def composition(f, x):
    if f == e:
        return x
    return f


id = e


N, Q = map(int, input().split())
lrB = [[int(i) for i in input().split()] for j in range(Q)]
lrB.sort(key=lambda x: x[2])
lag = LazySegTree(op, e, mapping, composition, id, [e]*N)

for i in range(Q):
    l, r, B = lrB[i]
    l -= 1
    lag.apply(l, r, B)

for i in range(Q):
    l, r, B = lrB[i]
    l -= 1
    if lag.prod(l, r) != B:
        print(-1)
        exit()
ans = [0]*N
for i in range(N):
    ans[i] = lag.get(i)
print(' '.join(list(map(str, ans))))
0