結果

問題 No.1234 典型RMQ
ユーザー marroncastlemarroncastle
提出日時 2020-09-18 22:46:07
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 734 ms / 2,000 ms
コード長 1,484 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 95,616 KB
最終ジャッジ日時 2024-11-09 02:00:45
合計ジャッジ時間 16,567 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
52,608 KB
testcase_01 AC 42 ms
52,224 KB
testcase_02 AC 44 ms
52,608 KB
testcase_03 AC 43 ms
52,352 KB
testcase_04 AC 43 ms
52,224 KB
testcase_05 AC 43 ms
52,352 KB
testcase_06 AC 664 ms
90,368 KB
testcase_07 AC 514 ms
85,272 KB
testcase_08 AC 729 ms
95,232 KB
testcase_09 AC 630 ms
87,124 KB
testcase_10 AC 694 ms
93,184 KB
testcase_11 AC 679 ms
89,984 KB
testcase_12 AC 617 ms
87,724 KB
testcase_13 AC 538 ms
85,104 KB
testcase_14 AC 639 ms
88,536 KB
testcase_15 AC 617 ms
86,656 KB
testcase_16 AC 703 ms
93,312 KB
testcase_17 AC 651 ms
88,144 KB
testcase_18 AC 487 ms
85,444 KB
testcase_19 AC 734 ms
95,232 KB
testcase_20 AC 595 ms
93,952 KB
testcase_21 AC 672 ms
89,984 KB
testcase_22 AC 660 ms
95,488 KB
testcase_23 AC 674 ms
95,360 KB
testcase_24 AC 656 ms
95,488 KB
testcase_25 AC 669 ms
95,488 KB
testcase_26 AC 674 ms
95,616 KB
testcase_27 AC 42 ms
52,352 KB
testcase_28 AC 43 ms
52,480 KB
testcase_29 AC 43 ms
52,608 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# N: 処理する区間の長さ
N = int(input())
INF = float('inf')

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

def gindex(l, r):
  L = (l + N0) >> 1; R = (r + N0) >> 1
  lc = 0 if l & 1 else (L & -L).bit_length()
  rc = 0 if r & 1 else (R & -R).bit_length()
  for i in range(LV):
    if rc <= i:
      yield R
    if L < R and lc <= i:
      yield L
    L >>= 1; R >>= 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

# 区間[l, r)にxを加算
def update(l, r, x):
  *ids, = gindex(l, r)
  propagates(*ids)

  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 ids:
    data[i-1] = min(data[2*i-1], data[2*i])

# 区間[l, r)内の最小値を求める
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())
ans = []
for _ in range(Q):
  k,l,r,c = map(int, input().split())
  if k==1:
    update(l-1,r,c)
  else:
    ans.append(query(l-1,r))
print(*ans, sep='\n')
0