結果

問題 No.2640 traO Stamps
ユーザー ゼットゼット
提出日時 2024-02-19 22:07:59
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 589 ms / 2,000 ms
コード長 1,199 bytes
コンパイル時間 511 ms
コンパイル使用メモリ 82,352 KB
実行使用メモリ 105,008 KB
最終ジャッジ日時 2024-09-29 02:03:53
合計ジャッジ時間 16,318 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,396 KB
testcase_01 AC 32 ms
52,576 KB
testcase_02 AC 33 ms
52,864 KB
testcase_03 AC 32 ms
53,672 KB
testcase_04 AC 34 ms
52,616 KB
testcase_05 AC 33 ms
53,204 KB
testcase_06 AC 503 ms
95,964 KB
testcase_07 AC 450 ms
96,088 KB
testcase_08 AC 537 ms
101,564 KB
testcase_09 AC 433 ms
91,244 KB
testcase_10 AC 495 ms
101,060 KB
testcase_11 AC 450 ms
93,304 KB
testcase_12 AC 489 ms
104,404 KB
testcase_13 AC 466 ms
93,428 KB
testcase_14 AC 529 ms
101,564 KB
testcase_15 AC 478 ms
93,892 KB
testcase_16 AC 458 ms
101,296 KB
testcase_17 AC 470 ms
100,840 KB
testcase_18 AC 466 ms
93,828 KB
testcase_19 AC 531 ms
104,652 KB
testcase_20 AC 478 ms
101,496 KB
testcase_21 AC 468 ms
93,712 KB
testcase_22 AC 497 ms
104,960 KB
testcase_23 AC 440 ms
91,320 KB
testcase_24 AC 480 ms
91,616 KB
testcase_25 AC 489 ms
104,412 KB
testcase_26 AC 432 ms
105,008 KB
testcase_27 AC 426 ms
104,948 KB
testcase_28 AC 423 ms
104,840 KB
testcase_29 AC 453 ms
104,736 KB
testcase_30 AC 589 ms
104,708 KB
testcase_31 AC 533 ms
104,700 KB
testcase_32 AC 503 ms
98,352 KB
testcase_33 AC 512 ms
101,364 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class segtree:
  def __init__(self,n):
    self.size=1
    while self.size<n:
      self.size*=2
    self.dat=[0]*(self.size*2)
  def update(self,x,a):
    x+=self.size
    self.dat[x]=a
    while x>1:
      x//=2
      self.dat[x]=(self.dat[2*x]+self.dat[2*x+1])
  def querry(self,u,v):
    u+=self.size
    v+=self.size
    score=0
    while u<v:
      if u&1:
        score+=self.dat[u]
        u+=1
      if v&1:
        v-=1
        score+=self.dat[v]
      u//=2
      v//=2
    return score
N,M,K=map(int,input().split())
A=list(map(int,input().split()))
for i in range(K+1):
  A[i]-=1
dist=[[10**15]*N for i in range(N)]
for i in range(N):
  dist[i][i]=0
for i in range(M):
  a,b,c=map(int,input().split())
  dist[a-1][b-1]=c
  dist[b-1][a-1]=c
for k in range(N):
  for i in range(N):
    for j in range(N):
      dist[i][j]=min(dist[i][j],dist[i][k]+dist[k][j])
Z=segtree(K)
for i in range(K):
  pos=A[i]
  pos2=A[i+1]
  Z.update(i,dist[pos][pos2])
Q=int(input())
for i in range(Q):
  t,x,y=map(int,input().split())
  if t==1:
    A[x]=y-1
    if x>0:
      Z.update(x-1,dist[A[x]][A[x-1]])
    if x<K:
      Z.update(x,dist[A[x]][A[x+1]])
  else:
    result=Z.querry(x,y)
    print(result)
0