結果

問題 No.876 Range Compress Query
ユーザー pynomipynomi
提出日時 2019-09-07 01:51:36
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,130 bytes
コンパイル時間 283 ms
コンパイル使用メモリ 82,436 KB
実行使用メモリ 96,548 KB
最終ジャッジ日時 2024-06-25 00:58:50
合計ジャッジ時間 4,612 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 WA -
testcase_02 AC 41 ms
58,752 KB
testcase_03 WA -
testcase_04 AC 44 ms
60,032 KB
testcase_05 AC 44 ms
59,904 KB
testcase_06 AC 62 ms
68,480 KB
testcase_07 WA -
testcase_08 AC 60 ms
66,816 KB
testcase_09 WA -
testcase_10 AC 56 ms
65,920 KB
testcase_11 AC 347 ms
95,696 KB
testcase_12 AC 314 ms
93,652 KB
testcase_13 AC 324 ms
93,292 KB
testcase_14 AC 350 ms
96,280 KB
testcase_15 AC 287 ms
91,268 KB
testcase_16 AC 355 ms
95,532 KB
testcase_17 AC 350 ms
95,156 KB
testcase_18 AC 361 ms
96,548 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, Q = map(int,input().split())
A = list(map(int,input().split()))
queries = [[int(e)-1 for e in input().split()] for _ in range(Q)]

B = [A[i+1] - A[i] for i in range(N-1)]
M = N-1

# C[k] : 1 (B[k] != 0) 0 (B[k] == 0)

# N: 処理する区間の長さ
N0 = 2**(M-1).bit_length()
INF = 2**31-1
data = [0]*(2*N0)

# c_k の値を x に更新
def update(k, x):
    k += N0-1
    data[k] = x
    while k >= 0:
        k = (k - 1) // 2
        data[k] = data[2*k+1] + data[2*k+2]

# 区間[l, r)の総和
def query(l, r):
    L = l + N0; R = r + N0
    s = 0
    while L < R:
        if R & 1:
            R -= 1
            s += data[R-1]
        if L & 1:
            s += data[L-1]
            L += 1
        L >>= 1; R >>= 1
    return s

# 配列の初期化
for i, b in enumerate(B):
    update(i, b != 0)

for line in queries:
    if len(line) == 4:
        q, l, r, x = line
        if l != 0:
            B[l-1] += x
            update(l-1, B[l-1] != 0)
        if r != M:
            B[r] -= x
            update(r, B[r] != 0)
    elif len(line) == 3:
        q, l, r = line
        ans = query(l, r) + 1
        print(ans)
0