結果

問題 No.2640 traO Stamps
ユーザー ニックネームニックネーム
提出日時 2024-02-19 22:03:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 485 ms / 2,000 ms
コード長 952 bytes
コンパイル時間 246 ms
コンパイル使用メモリ 82,828 KB
実行使用メモリ 105,268 KB
最終ジャッジ日時 2024-09-29 02:01:08
合計ジャッジ時間 15,065 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,436 KB
testcase_01 AC 30 ms
53,200 KB
testcase_02 AC 30 ms
52,984 KB
testcase_03 AC 32 ms
53,140 KB
testcase_04 AC 33 ms
53,384 KB
testcase_05 AC 31 ms
53,008 KB
testcase_06 AC 404 ms
96,140 KB
testcase_07 AC 393 ms
96,240 KB
testcase_08 AC 476 ms
101,368 KB
testcase_09 AC 375 ms
91,532 KB
testcase_10 AC 424 ms
101,144 KB
testcase_11 AC 374 ms
93,688 KB
testcase_12 AC 425 ms
103,984 KB
testcase_13 AC 391 ms
93,756 KB
testcase_14 AC 450 ms
101,032 KB
testcase_15 AC 417 ms
93,772 KB
testcase_16 AC 388 ms
101,332 KB
testcase_17 AC 421 ms
101,324 KB
testcase_18 AC 409 ms
93,648 KB
testcase_19 AC 454 ms
104,392 KB
testcase_20 AC 429 ms
101,092 KB
testcase_21 AC 393 ms
93,708 KB
testcase_22 AC 451 ms
104,400 KB
testcase_23 AC 388 ms
91,760 KB
testcase_24 AC 431 ms
91,840 KB
testcase_25 AC 450 ms
104,860 KB
testcase_26 AC 405 ms
105,268 KB
testcase_27 AC 402 ms
104,768 KB
testcase_28 AC 434 ms
104,700 KB
testcase_29 AC 468 ms
104,900 KB
testcase_30 AC 485 ms
104,624 KB
testcase_31 AC 469 ms
104,524 KB
testcase_32 AC 450 ms
98,840 KB
testcase_33 AC 461 ms
101,556 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class BIT:
    def __init__(self,n):
        self.n = n; self.k = [0]*(n+1)
    def a(self,i,x):
        while i<=self.n: self.k[i] += x; i += i&-i
    def s(self,i):
        t = 0
        while i>0: t += self.k[i]; i -= i&-i
        return t
    def r(self,l,r): return self.s(r)-self.s(l-1)
n,m,k = map(int,input().split())
s = [v-1 for v in map(int,input().split())]
d = [[10**18]*n for _ in range(n)]
for i in range(n): d[i][i] = 0
for _ in range(m):
    a,b,c = map(int,input().split())
    d[a-1][b-1] = d[b-1][a-1] = c
for l in range(n):
    for i in range(n):
        for j in range(n):
            d[i][j] = min(d[i][j],d[i][l]+d[l][j])
bit = BIT(k)
for i in range(1,k+1): bit.a(i,d[s[i-1]][s[i]])
for _ in range(int(input())):
    t,x,y = map(int,input().split())
    if t==1:
        if x>0: bit.a(x,d[s[x-1]][y-1]-d[s[x-1]][s[x]])
        if x<k: bit.a(x+1,d[y-1][s[x+1]]-d[s[x]][s[x+1]])
        s[x] = y-1
    if t==2: print(bit.r(x+1,y))
0