結果

問題 No.2640 traO Stamps
ユーザー zer0-starzer0-star
提出日時 2024-02-12 19:05:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 708 ms / 2,000 ms
コード長 1,415 bytes
コンパイル時間 432 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 105,332 KB
最終ジャッジ日時 2024-09-28 18:10:34
合計ジャッジ時間 18,541 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 34 ms
53,188 KB
testcase_01 AC 34 ms
53,732 KB
testcase_02 AC 34 ms
53,636 KB
testcase_03 AC 35 ms
53,468 KB
testcase_04 AC 35 ms
53,464 KB
testcase_05 AC 33 ms
52,900 KB
testcase_06 AC 519 ms
96,456 KB
testcase_07 AC 521 ms
95,972 KB
testcase_08 AC 568 ms
101,448 KB
testcase_09 AC 469 ms
91,504 KB
testcase_10 AC 519 ms
101,584 KB
testcase_11 AC 451 ms
93,508 KB
testcase_12 AC 541 ms
104,184 KB
testcase_13 AC 487 ms
93,908 KB
testcase_14 AC 558 ms
101,236 KB
testcase_15 AC 508 ms
93,860 KB
testcase_16 AC 499 ms
101,544 KB
testcase_17 AC 534 ms
101,628 KB
testcase_18 AC 518 ms
94,124 KB
testcase_19 AC 542 ms
104,260 KB
testcase_20 AC 551 ms
101,232 KB
testcase_21 AC 502 ms
93,972 KB
testcase_22 AC 576 ms
104,660 KB
testcase_23 AC 483 ms
92,024 KB
testcase_24 AC 501 ms
91,880 KB
testcase_25 AC 516 ms
104,664 KB
testcase_26 AC 640 ms
104,892 KB
testcase_27 AC 652 ms
105,332 KB
testcase_28 AC 616 ms
105,008 KB
testcase_29 AC 708 ms
105,020 KB
testcase_30 AC 584 ms
104,800 KB
testcase_31 AC 598 ms
104,908 KB
testcase_32 AC 579 ms
98,660 KB
testcase_33 AC 560 ms
101,344 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

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

dist = [[10**18] * N for _ in range(N)]

for i in range(N):
    dist[i][i] = 0

for _ in range(M):
    u, v, w = map(int, input().split())
    dist[u - 1][v - 1] = w
    dist[v - 1][u - 1] = w

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])

P = int(math.sqrt(K))

baby = [0] * K
giant = [0] * ((K + P - 1) // P)

for i in range(K):
    baby[i] = dist[S[i] - 1][S[i + 1] - 1]
    giant[i // P] += baby[i]

Q = int(input())

for _ in range(Q):
    T, X, Y = map(int, input().split())

    if T == 1:
        S[X] = Y

        if X > 0:
            giant[(X - 1) // P] -= baby[X - 1]
            baby[X - 1] = dist[S[X - 1] - 1][S[X] - 1]
            giant[(X - 1) // P] += baby[X - 1]

        if X < K:
            giant[X // P] -= baby[X]
            baby[X] = dist[S[X] - 1][S[X + 1] - 1]
            giant[X // P] += baby[X]
    else:
        ans = 0
        x = (X + P - 1) // P
        y = Y // P

        if x >= y:
            for i in range(X, Y):
                ans += baby[i]
            print(ans)
            continue

        for i in range(x, y):
            ans += giant[i]
        for i in range(X, min(K, x * P)):
            ans += baby[i]
        for i in range(y * P, Y):
            ans += baby[i]

        print(ans)

0