結果

問題 No.2640 traO Stamps
ユーザー titiatitia
提出日時 2024-02-24 02:59:27
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 453 ms / 2,000 ms
コード長 2,089 bytes
コンパイル時間 289 ms
コンパイル使用メモリ 82,288 KB
実行使用メモリ 104,192 KB
最終ジャッジ日時 2024-09-29 09:47:21
合計ジャッジ時間 12,275 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,352 KB
testcase_01 AC 39 ms
52,096 KB
testcase_02 AC 38 ms
52,224 KB
testcase_03 AC 38 ms
52,736 KB
testcase_04 AC 36 ms
52,480 KB
testcase_05 AC 37 ms
52,352 KB
testcase_06 AC 314 ms
94,976 KB
testcase_07 AC 301 ms
94,720 KB
testcase_08 AC 376 ms
100,992 KB
testcase_09 AC 224 ms
90,112 KB
testcase_10 AC 349 ms
100,972 KB
testcase_11 AC 365 ms
92,248 KB
testcase_12 AC 281 ms
103,936 KB
testcase_13 AC 367 ms
92,928 KB
testcase_14 AC 453 ms
100,864 KB
testcase_15 AC 399 ms
92,544 KB
testcase_16 AC 368 ms
100,352 KB
testcase_17 AC 386 ms
100,352 KB
testcase_18 AC 345 ms
92,928 KB
testcase_19 AC 341 ms
103,760 KB
testcase_20 AC 251 ms
100,736 KB
testcase_21 AC 348 ms
92,672 KB
testcase_22 AC 441 ms
103,680 KB
testcase_23 AC 271 ms
90,240 KB
testcase_24 AC 368 ms
90,548 KB
testcase_25 AC 299 ms
104,192 KB
testcase_26 AC 276 ms
103,888 KB
testcase_27 AC 272 ms
104,064 KB
testcase_28 AC 283 ms
103,936 KB
testcase_29 AC 278 ms
103,936 KB
testcase_30 AC 276 ms
104,192 KB
testcase_31 AC 275 ms
104,064 KB
testcase_32 AC 261 ms
97,808 KB
testcase_33 AC 267 ms
100,736 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

N,M,K=map(int,input().split())
S=list(map(int,input().split()))

# グラフの最短距離を全て求める(ワーシャル–フロイド法)

Distance=[[float("inf") for i in range(N+1)] for j in range(N+1)]

for i in range(N+1):
    Distance[i][i]=0

for i in range(M):
    i,j,t=map(int,input().split())
    Distance[i][j]=Distance[j][i]=t # 分かっている距離を書き込んでおく.

for k in range(1,N+1): # k個までの町を使ってのDisが知れているときに
    for i in range(1,N+1): # 町iと
        for j in range(i,N+1): # 町jとの最短距離は、
            length=Distance[i][k]+Distance[j][k]
            if Distance[i][j]>length:
                Distance[i][j]=Distance[j][i]=length

def seg_function(x,y): # Segment treeで扱うfunction
    return x+y

seg_el=1<<(K.bit_length()) # Segment treeの台の要素数
SEG=[0]*(2*seg_el) # 1-indexedなので、要素数2*seg_el.Segment treeの初期値で初期化

for i in range(K): # Aを対応する箇所へupdate
    SEG[i+seg_el]=Distance[S[i]][S[i+1]]

for i in range(seg_el-1,0,-1): # 親の部分もupdate
    SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])

def update(n,x,seg_el): # A[n]をxへ更新
    i=n+seg_el
    SEG[i]=x
    i>>=1 # 子ノードへ
    
    while i!=0:
        SEG[i]=seg_function(SEG[i*2],SEG[i*2+1])
        i>>=1
        
def getvalues(l,r): # 区間[l,r)に関するseg_functionを調べる
    L=l+seg_el
    R=r+seg_el
    ANS1=0
    ANS2=0

    while L<R:
        if L & 1:
            ANS1=seg_function(ANS1, SEG[L])
            L+=1

        if R & 1:
            R-=1
            ANS2=seg_function(SEG[R], ANS2)
        L>>=1
        R>>=1

    return seg_function(ANS1, ANS2)

LANS=[]
Q=int(input())
for tests in range(Q):
    com,x,y=map(int,input().split())

    if com==1:
        S[x]=y

        if x-1>=0:
            update(x-1,Distance[S[x-1]][S[x]],seg_el)

        if x+1<=K:
            update(x,Distance[S[x]][S[x+1]],seg_el)
    else:
        LANS.append(getvalues(x,y))

print("\n".join(map(str,LANS)))
0