結果

問題 No.2640 traO Stamps
ユーザー 👑 rin204rin204
提出日時 2024-02-19 21:41:55
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 596 ms / 2,000 ms
コード長 3,680 bytes
コンパイル時間 373 ms
コンパイル使用メモリ 82,308 KB
実行使用メモリ 104,888 KB
最終ジャッジ日時 2024-09-29 01:37:25
合計ジャッジ時間 17,996 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
53,416 KB
testcase_01 AC 35 ms
53,528 KB
testcase_02 AC 35 ms
53,924 KB
testcase_03 AC 38 ms
53,912 KB
testcase_04 AC 37 ms
53,788 KB
testcase_05 AC 37 ms
54,320 KB
testcase_06 AC 515 ms
95,828 KB
testcase_07 AC 503 ms
95,772 KB
testcase_08 AC 596 ms
100,828 KB
testcase_09 AC 491 ms
91,300 KB
testcase_10 AC 553 ms
100,868 KB
testcase_11 AC 496 ms
93,400 KB
testcase_12 AC 540 ms
104,280 KB
testcase_13 AC 493 ms
93,552 KB
testcase_14 AC 570 ms
101,104 KB
testcase_15 AC 520 ms
93,652 KB
testcase_16 AC 481 ms
100,624 KB
testcase_17 AC 524 ms
100,832 KB
testcase_18 AC 506 ms
93,600 KB
testcase_19 AC 573 ms
104,420 KB
testcase_20 AC 523 ms
101,020 KB
testcase_21 AC 502 ms
93,584 KB
testcase_22 AC 559 ms
104,476 KB
testcase_23 AC 504 ms
91,740 KB
testcase_24 AC 544 ms
91,608 KB
testcase_25 AC 538 ms
104,456 KB
testcase_26 AC 461 ms
104,636 KB
testcase_27 AC 477 ms
104,592 KB
testcase_28 AC 463 ms
104,832 KB
testcase_29 AC 499 ms
104,888 KB
testcase_30 AC 580 ms
104,456 KB
testcase_31 AC 585 ms
104,564 KB
testcase_32 AC 548 ms
98,612 KB
testcase_33 AC 574 ms
100,716 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class SegmentTreeBase_:
    def ope(self, l, r):
        raise NotImplementedError

    def e(self):
        raise NotImplementedError

    def __init__(self, n, init=None):
        self.n = n
        self.n0 = 1 << (n - 1).bit_length()
        self.data = [self.e()] * (2 * self.n0)
        if init is not None:
            for i in range(n):
                self.data[self.n0 + i] = init[i]
            for i in range(self.n0 - 1, 0, -1):
                self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1])

    def build(self):
        for i in range(self.n0 - 1, 0, -1):
            self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1])

    def set(self, i, x):
        i += self.n0
        self.data[i] = x
        while i > 1:
            i >>= 1
            self.data[i] = self.ope(self.data[2 * i], self.data[2 * i + 1])

    def get(self, i):
        return self.data[i + self.n0]

    def __getitem__(self, i):
        return self.data[i + self.n0]

    def __setitem__(self, i, x):
        self.set(i, x)

    def prod(self, l, r):
        assert 0 <= l <= r <= self.n0
        l += self.n0
        r += self.n0
        lles = self.e()
        rres = self.e()
        while l < r:
            if l & 1:
                lles = self.ope(lles, self.data[l])
                l += 1
            if r & 1:
                r -= 1
                rres = self.ope(self.data[r], rres)
            l >>= 1
            r >>= 1
        return self.ope(lles, rres)

    def max_right(self, l, f):
        if l == self.n:
            return self.n
        l += self.n0
        sm = self.e()
        while 1:
            while l % 2 == 0:
                l >>= 1
            if not f(self.ope(sm, self.data[l])):
                while l < self.n0:
                    l <<= 1
                    if f(self.ope(sm, self.data[l])):
                        sm = self.ope(sm, self.data[l])
                        l += 1
                return l - self.n0
            sm = self.ope(sm, self.data[l])
            l += 1
            if l & -l == l:
                break
        return self.n

    def min_left(self, r, f):
        if r == 0:
            return 0
        r += self.n0
        sm = self.e()
        while 1:
            r -= 1
            while r > 1 and r % 2:
                r >>= 1
            if not f(self.ope(self.data[r], sm)):
                while r < self.n0:
                    r = 2 * r + 1
                    if f(self.ope(self.data[r], sm)):
                        sm = self.ope(self.data[r], sm)
                        r -= 1
                return r + 1 - self.n0
            sm = self.ope(self.data[r], sm)
            if r & -r == r:
                break
        return 0


class RangeSum(SegmentTreeBase_):
    def ope(self, l, r):
        return l + r

    def e(self):
        return 0


n, m, k = map(int, input().split())
S = list(map(int, input().split()))
dist = [[1 << 60] * 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())
    a -= 1
    b -= 1
    dist[a][b] = c
    dist[b][a] = c

for t in range(n):
    for i in range(n):
        for j in range(n):
            dist[i][j] = min(dist[i][j], dist[i][t] + dist[t][j])

for i in range(k + 1):
    S[i] -= 1

C = [0] * k
for i in range(k):
    d = dist[S[i]][S[i + 1]]
    C[i] = d

seg = RangeSum(k, C)

Q = int(input())
for _ in range(Q):
    t, x, y = map(int, input().split())
    if t == 1:
        y -= 1
        S[x] = y
        if x != 0:
            seg.set(x - 1, dist[S[x - 1]][S[x]])
        if x != k:
            seg.set(x, dist[S[x]][S[x + 1]])
    else:
        print(seg.prod(x, y))
0