結果

問題 No.1234 典型RMQ
ユーザー hir355hir355
提出日時 2020-09-18 21:59:46
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 954 ms / 2,000 ms
コード長 1,599 bytes
コンパイル時間 273 ms
コンパイル使用メモリ 82,304 KB
実行使用メモリ 95,360 KB
最終ジャッジ日時 2024-11-09 01:53:44
合計ジャッジ時間 20,358 ms
ジャッジサーバーID
(参考情報)
judge2 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,096 KB
testcase_01 AC 45 ms
52,608 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 44 ms
52,352 KB
testcase_04 AC 44 ms
52,480 KB
testcase_05 AC 43 ms
52,352 KB
testcase_06 AC 911 ms
90,496 KB
testcase_07 AC 792 ms
80,512 KB
testcase_08 AC 954 ms
94,976 KB
testcase_09 AC 874 ms
84,224 KB
testcase_10 AC 942 ms
93,056 KB
testcase_11 AC 901 ms
89,984 KB
testcase_12 AC 853 ms
83,592 KB
testcase_13 AC 817 ms
80,772 KB
testcase_14 AC 857 ms
83,968 KB
testcase_15 AC 860 ms
83,456 KB
testcase_16 AC 931 ms
92,800 KB
testcase_17 AC 847 ms
83,592 KB
testcase_18 AC 742 ms
80,352 KB
testcase_19 AC 920 ms
94,848 KB
testcase_20 AC 551 ms
93,824 KB
testcase_21 AC 907 ms
90,112 KB
testcase_22 AC 811 ms
95,232 KB
testcase_23 AC 791 ms
95,104 KB
testcase_24 AC 780 ms
95,232 KB
testcase_25 AC 788 ms
95,360 KB
testcase_26 AC 790 ms
95,232 KB
testcase_27 AC 43 ms
52,224 KB
testcase_28 AC 41 ms
51,968 KB
testcase_29 AC 43 ms
52,096 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
readline = sys.stdin.readline
write = sys.stdout.write

N = int(input())
INF = 2**72-1

LV = (N-1).bit_length()
N0 = 2**LV
data = [0]*(2*N0)
lazy = [0]*(2*N0)


def gindex(l, r):
    L = l + N0
    R = r + N0
    lm = (L // (L & -L)) >> 1
    rm = (R // (R & -R)) >> 1
    while L < R:
        if R <= rm:
            yield R
        if L <= lm:
            yield L
        L >>= 1
        R >>= 1
    while L:
        yield L
        L >>= 1


def propagates(*ids):
    for i in reversed(ids):
        v = lazy[i-1]
        if not v:
            continue
        lazy[2*i-1] += v
        lazy[2*i] += v
        data[2*i-1] += v
        data[2*i] += v
        lazy[i-1] = 0


def update(l, r, x):
    L = N0 + l
    R = N0 + r
    while L < R:
        if R & 1:
            R -= 1
            lazy[R-1] += x
            data[R-1] += x
        if L & 1:
            lazy[L-1] += x
            data[L-1] += x
            L += 1
        L >>= 1
        R >>= 1
    for i in gindex(l, r):
        data[i-1] = min(data[2*i-1], data[2*i]) + lazy[i-1]


def query(l, r):
    propagates(*gindex(l, r))
    L = N0 + l
    R = N0 + r

    s = INF
    while L < R:
        if R & 1:
            R -= 1
            s = min(s, data[R-1])
        if L & 1:
            s = min(s, data[L-1])
            L += 1
        L >>= 1
        R >>= 1
    return s


a = list(map(int, input().split()))
for i in range(N):
    update(i, i + 1, a[i])
Q = int(input())
for q in range(Q):
    k, s, t, x = map(int, input().split())
    if k == 2:
        print(query(s - 1, t))
    else:
        update(s - 1, t, x)
0