結果

問題 No.776 A Simple RMQ Problem
ユーザー maspymaspy
提出日時 2020-05-01 12:15:21
言語 Python3
(3.13.1 + numpy 2.2.1 + scipy 1.14.1)
結果
TLE  
実行時間 -
コード長 2,660 bytes
コンパイル時間 211 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 90,016 KB
最終ジャッジ日時 2024-12-23 17:57:16
合計ジャッジ時間 88,965 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 26 ms
16,256 KB
testcase_01 AC 30 ms
52,200 KB
testcase_02 AC 504 ms
24,204 KB
testcase_03 AC 2,018 ms
64,004 KB
testcase_04 AC 2,861 ms
71,516 KB
testcase_05 TLE -
testcase_06 AC 1,257 ms
27,912 KB
testcase_07 AC 2,847 ms
86,348 KB
testcase_08 TLE -
testcase_09 AC 1,055 ms
84,556 KB
testcase_10 AC 2,051 ms
31,904 KB
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 TLE -
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 277 ms
23,168 KB
testcase_26 TLE -
testcase_27 TLE -
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines

class SegTree:
    def __init__(self, N, X_f, X_unit, X_commutative=False):
        self.N = N
        self.X_f = X_f
        self.X_unit = X_unit
        self.X = [self.X_unit] * (N + N)
        if X_commutative:
            self.fold = self._fold_commutative

    def build(self, seq):
        for i, x in enumerate(seq, self.N):
            self.X[i] = x
        for i in range(self.N - 1, 0, -1):
            self.X[i] = self.X_f(self.X[i << 1], self.X[i << 1 | 1])

    def set_val(self, i, x):
        i += self.N
        self.X[i] = x
        while i > 1:
            i >>= 1
            self.X[i] = self.X_f(self.X[i << 1], self.X[i << 1 | 1])

    def fold(self, L, R):
        L += self.N
        R += self.N
        vL = vR = self.X_unit
        while L < R:
            if L & 1:
                vL = self.X_f(vL, self.X[L])
                L += 1
            if R & 1:
                R -= 1
                vR = self.X_f(self.X[R], vR)
            L >>= 1
            R >>= 1
        return self.X_f(vL, vR)

    def _fold_commutative(self, L, R):
        L += self.N
        R += self.N
        v = self.X_unit
        while L < R:
            if L & 1:
                v = self.X_f(v, self.X[L])
                L += 1
            if R & 1:
                R -= 1
                v = self.X_f(v, self.X[R])
            L >>= 1
            R >>= 1
        return v

X_unit = None


def X_f(x, y):
    if x is None:
        return y
    if y is None:
        return x
    return (max(x[0], y[0], x[2] + y[1]), max(x[1], x[3] + y[1]),
            max(y[2], x[2] + y[3]), x[3] + y[3])

N, Q = map(int, readline().split())
A = map(int, readline().split())
seg = SegTree(N, X_f, X_unit)
seg.build((x, x, x, x) for x in A)

def range_max(L1, L2, R1, R2):
    R1 = max(L1, R1)
    L2 = min(L2, R2)
    if L2 < R1:
        mid = 0 if R1 == L2 + 1 else seg.fold(L2 + 1, R1)[3]
        return seg.fold(L1, L2 + 1)[2] + mid + seg.fold(R1, R2 + 1)[1]
    ret = -10**18
    # R1 より左に左端がある
    if L1 < R1:
        ret = max(ret, seg.fold(L1, R1)[2] + seg.fold(R1, R2 + 1)[1])
    # L2 以前に右端がある
    ret = max(ret, seg.fold(R1, L2 + 1)[0])
    # L2 より右に右端がある
    if L2 < R2:
        ret = max(ret, seg.fold(R1, L2 + 1)[2] + seg.fold(L2 + 1, R2 + 1)[1])
    return ret

for query in readlines():
    if query.startswith(b's'):
        i, x = map(int, query[4:].split())
        seg.set_val(i - 1, (x, x, x, x))
    else:
        print(range_max(*map(lambda x: int(x) - 1, query[4:].split())))
0