結果

問題 No.2640 traO Stamps
ユーザー satama123satama123
提出日時 2024-02-19 22:02:04
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 691 ms / 2,000 ms
コード長 1,953 bytes
コンパイル時間 326 ms
コンパイル使用メモリ 82,444 KB
実行使用メモリ 109,860 KB
最終ジャッジ日時 2024-09-29 02:00:01
合計ジャッジ時間 20,788 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 63 ms
68,656 KB
testcase_01 AC 64 ms
68,532 KB
testcase_02 AC 65 ms
67,820 KB
testcase_03 AC 64 ms
68,600 KB
testcase_04 AC 64 ms
67,876 KB
testcase_05 AC 63 ms
68,260 KB
testcase_06 AC 600 ms
95,012 KB
testcase_07 AC 596 ms
93,788 KB
testcase_08 AC 691 ms
101,500 KB
testcase_09 AC 546 ms
91,412 KB
testcase_10 AC 627 ms
101,696 KB
testcase_11 AC 568 ms
94,452 KB
testcase_12 AC 600 ms
105,096 KB
testcase_13 AC 582 ms
95,092 KB
testcase_14 AC 660 ms
102,572 KB
testcase_15 AC 619 ms
95,148 KB
testcase_16 AC 577 ms
105,408 KB
testcase_17 AC 619 ms
101,100 KB
testcase_18 AC 595 ms
95,336 KB
testcase_19 AC 679 ms
105,460 KB
testcase_20 AC 621 ms
101,752 KB
testcase_21 AC 586 ms
95,256 KB
testcase_22 AC 637 ms
105,596 KB
testcase_23 AC 561 ms
91,052 KB
testcase_24 AC 632 ms
91,560 KB
testcase_25 AC 636 ms
105,636 KB
testcase_26 AC 543 ms
109,792 KB
testcase_27 AC 552 ms
109,652 KB
testcase_28 AC 541 ms
109,844 KB
testcase_29 AC 583 ms
109,860 KB
testcase_30 AC 677 ms
105,408 KB
testcase_31 AC 680 ms
105,660 KB
testcase_32 AC 648 ms
97,224 KB
testcase_33 AC 652 ms
100,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from typing import Callable, Generic, TypeVar, List
T = TypeVar("T")
class SegmentTree(Generic[T]):
    def __init__(self, op:Callable[[T, T], T], e:Callable[[], T], N:int):
        self._length = 1
        while self._length < N:
            self._length <<= 1
        
        self._tree: List[T] = [e()] * (self._length * 2)
        self._op = op
        self._e = e

    def __getitem__(self, key):
        return self._tree[key + self._length]

    def set(self, key:int, val:T):
        key += self._length
        self._tree[key] = val
        key >>= 1
        while key:
            self.update(key)
            key >>= 1

    def update(self, key:int):
        self._tree[key] = self._op(self._tree[2*key], self._tree[2*key + 1])
    
    def prod(self, l:int, r:int) -> T:
        l += self._length
        r += self._length

        sml, smr = self._e(), self._e()

        while l < r:
            if l & 1 : sml = self._op(sml, self._tree[l]); l += 1
            if r & 1 : r -= 1; smr = self._op(self._tree[r], smr)
            l >>= 1; r >>= 1
        
        return self._op(sml, smr)


N, M, K = map(int, input().split())
S = list(map(int, input().split()))
for i in range(K + 1):
    S[i] -= 1
dist = [[1<<60 for _ in range(N)] for _ in range(N)]

for i in range(N):dist[i][i] = 0
for _ 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])


def op(x:int, y:int):
    return x + y

def e():
    return 0

seg = SegmentTree(op, e, K + 1)
for i in range(K):
    seg.set(i, dist[S[i]][S[i+1]])

Q = int(input())

while Q:
    Q -= 1
    t, x, y = map(int, input().split())
    y -= 1

    if t == 1:
        S[x] = y
        if x > 0 : seg.set(x-1, dist[y][S[x-1]])
        if x < K : seg.set(x, dist[y][S[x+1]])
    else:
        print(seg.prod(x, y+1))
0