結果

問題 No.2950 Max Min Product
ユーザー nouka28nouka28
提出日時 2024-09-23 13:36:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,569 ms / 3,000 ms
コード長 7,335 bytes
コンパイル時間 527 ms
コンパイル使用メモリ 82,212 KB
実行使用メモリ 176,052 KB
最終ジャッジ日時 2024-10-25 23:29:46
合計ジャッジ時間 66,003 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 65 ms
69,996 KB
testcase_01 AC 65 ms
69,888 KB
testcase_02 AC 66 ms
69,608 KB
testcase_03 AC 1,379 ms
153,324 KB
testcase_04 AC 1,483 ms
159,604 KB
testcase_05 AC 1,418 ms
155,484 KB
testcase_06 AC 1,805 ms
169,368 KB
testcase_07 AC 1,811 ms
169,584 KB
testcase_08 AC 1,827 ms
169,596 KB
testcase_09 AC 1,036 ms
126,324 KB
testcase_10 AC 1,642 ms
165,056 KB
testcase_11 AC 1,462 ms
156,684 KB
testcase_12 AC 1,828 ms
167,932 KB
testcase_13 AC 1,906 ms
165,764 KB
testcase_14 AC 1,830 ms
166,272 KB
testcase_15 AC 1,824 ms
163,616 KB
testcase_16 AC 1,467 ms
149,484 KB
testcase_17 AC 1,647 ms
157,276 KB
testcase_18 AC 1,943 ms
166,452 KB
testcase_19 AC 2,033 ms
167,300 KB
testcase_20 AC 1,995 ms
167,072 KB
testcase_21 AC 1,280 ms
135,868 KB
testcase_22 AC 1,634 ms
160,632 KB
testcase_23 AC 1,173 ms
130,040 KB
testcase_24 AC 2,000 ms
171,652 KB
testcase_25 AC 2,034 ms
173,472 KB
testcase_26 AC 1,961 ms
173,564 KB
testcase_27 AC 1,690 ms
153,624 KB
testcase_28 AC 2,301 ms
174,644 KB
testcase_29 AC 1,748 ms
159,028 KB
testcase_30 AC 2,569 ms
169,984 KB
testcase_31 AC 2,342 ms
176,052 KB
testcase_32 AC 2,396 ms
173,856 KB
testcase_33 AC 1,537 ms
133,660 KB
testcase_34 AC 1,093 ms
111,372 KB
testcase_35 AC 1,498 ms
132,084 KB
testcase_36 AC 1,963 ms
134,448 KB
testcase_37 AC 1,994 ms
135,032 KB
testcase_38 AC 1,960 ms
135,608 KB
testcase_39 AC 64 ms
68,856 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

mod=998244353

def op(x,y):
    return ((x[0]+y[0])%mod,x[1]+y[1])

e=(0,0)

def mapping(f,x):
    if f==-1:return x
    else:return ((f*x[1])%mod,x[1])

def composition(f,g):
    if f==-1:return g
    else:return f

id=-1

N=int(input())
A=list(map(int,input().split()))

inc=[]
dec=[]

seg_inc=LazySegTree(op,e,mapping,composition,id,[(0,1)for i in range(N)])
seg_dec=LazySegTree(op,e,mapping,composition,id,[(0,1)for i in range(N)])

ans=0
sum=0

for i in range(N):
    incl=i
    while len(inc) and inc[-1][0]<=A[i]:
        v,l,r=inc.pop()
        incl=l
        sum=(sum-v*seg_dec.prod(l,r)[0])%mod
    
    inc.append((A[i],incl,i+1))
    sum=(sum+A[i]*seg_dec.prod(incl,i+1)[0])%mod
    seg_inc.apply(incl,i+1,A[i])
    decl=i
    while len(dec)and dec[-1][0]>=A[i]:
        v,l,r=dec.pop()
        decl=l
        sum=(sum-v*seg_inc.prod(l,r)[0])%mod
    dec.append((A[i],decl,i+1))
    sum=(sum+A[i]*seg_inc.prod(decl,i+1)[0])%mod
    seg_dec.apply(decl,i+1,A[i])
    ans=(ans+sum)%mod

print(ans)
0