結果

問題 No.318 学学学学学
ユーザー timitimi
提出日時 2020-12-15 13:35:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 685 ms / 2,000 ms
コード長 1,583 bytes
コンパイル時間 175 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 112,492 KB
最終ジャッジ日時 2024-09-20 01:38:39
合計ジャッジ時間 10,746 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 143 ms
78,976 KB
testcase_01 AC 178 ms
82,212 KB
testcase_02 AC 202 ms
83,712 KB
testcase_03 AC 161 ms
80,408 KB
testcase_04 AC 190 ms
82,176 KB
testcase_05 AC 683 ms
112,492 KB
testcase_06 AC 596 ms
106,544 KB
testcase_07 AC 492 ms
100,908 KB
testcase_08 AC 391 ms
97,256 KB
testcase_09 AC 326 ms
94,124 KB
testcase_10 AC 248 ms
94,848 KB
testcase_11 AC 685 ms
111,900 KB
testcase_12 AC 492 ms
102,912 KB
testcase_13 AC 426 ms
98,956 KB
testcase_14 AC 363 ms
96,096 KB
testcase_15 AC 307 ms
93,708 KB
testcase_16 AC 322 ms
95,104 KB
testcase_17 AC 379 ms
102,484 KB
testcase_18 AC 370 ms
102,528 KB
testcase_19 AC 390 ms
102,528 KB
testcase_20 AC 257 ms
93,568 KB
testcase_21 AC 37 ms
52,096 KB
testcase_22 AC 37 ms
52,096 KB
testcase_23 AC 36 ms
52,224 KB
testcase_24 AC 37 ms
52,352 KB
testcase_25 AC 37 ms
52,352 KB
testcase_26 AC 37 ms
52,096 KB
testcase_27 AC 37 ms
52,224 KB
testcase_28 AC 37 ms
52,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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 v is None:
            continue
        lazy[2*i-1] = lazy[2*i] = data[2*i-1] = data[2*i] = v >> 1
        lazy[i-1] = None

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

    L = N0 + l; R = N0 + r
    v = x
    while L < R:
        if R & 1:
            R -= 1
            lazy[R-1] = data[R-1] = v
        if L & 1:
            lazy[L-1] = data[L-1] = v
            L += 1
        L >>= 1; R >>= 1; v <<= 1
    for i in ids:
        data[i-1] = data[2*i-1] + data[2*i]

# 区間[l, r)内の合計を求める
def query(l, r):
    propagates(*gindex(l, r))
    L = N0 + l; R = N0 + r

    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
N=int(input())
n=N
A=list(map(int, input().split()))
D={}
for i in range(N):
  if A[i] not in D:
    D[A[i]]=[i,i]
  else:
    D[A[i]][-1]=i

D=sorted(D.items())
# N: 処理する区間の長さ
LV=(N-1).bit_length()
N0=2**LV
data=[0]*(2*N0)
lazy=[None]*(2*N0)
for a,b in D:
  update(b[0],b[1]+1,a)
F=[]
for i in range(N):
  F.append(query(i,i+1))
print(*F)
0