結果

問題 No.2630 Colorful Vertices and Cheapest Paths
ユーザー amesyuamesyu
提出日時 2024-02-16 22:13:03
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,681 bytes
コンパイル時間 300 ms
コンパイル使用メモリ 82,576 KB
実行使用メモリ 323,384 KB
最終ジャッジ日時 2024-09-28 20:49:30
合計ジャッジ時間 37,002 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 904 ms
136,768 KB
testcase_01 AC 1,851 ms
203,180 KB
testcase_02 AC 2,403 ms
299,420 KB
testcase_03 AC 74 ms
76,624 KB
testcase_04 AC 46 ms
66,796 KB
testcase_05 AC 75 ms
77,024 KB
testcase_06 AC 713 ms
107,040 KB
testcase_07 AC 2,107 ms
315,848 KB
testcase_08 AC 2,018 ms
288,976 KB
testcase_09 AC 2,306 ms
319,012 KB
testcase_10 TLE -
testcase_11 TLE -
testcase_12 TLE -
testcase_13 TLE -
testcase_14 TLE -
testcase_15 AC 783 ms
83,068 KB
testcase_16 AC 804 ms
83,280 KB
testcase_17 AC 805 ms
83,260 KB
testcase_18 AC 1,027 ms
146,652 KB
testcase_19 AC 1,538 ms
262,396 KB
testcase_20 AC 1,437 ms
229,608 KB
testcase_21 AC 1,756 ms
318,996 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

class UnionFind:

    def __init__(self, n):
        self.n = n
        self.parent = [i for i in range(n)]
        self.size = [0] * n
        self.diff = [0] * n

    def find(self, x):
        if self.parent[x] == x:
            return x

        root = self.find(self.parent[x])
        self.diff[x] += self.diff[self.parent[x]]
        self.parent[x] = root
        return root

    def unite(self, a, b, weight=0):
        rx = self.find(a)
        ry = self.find(b)

        if self.size[rx] < self.size[ry]:
            self.parent[rx] = ry
            self.diff[rx] = weight - self.diff[a] + self.diff[b]
        else:
            self.parent[ry] = rx
            self.diff[ry] = - weight - self.diff[b] + self.diff[a]
            if self.size[rx] == self.size[ry]:
                self.size[rx] += 1

    def same(self, a, b):
        return self.find(a) == self.find(b)

    def cost(self, a, b):
        return self.diff[a] - self.diff[b]

inf = int(1e18) + 2525
n, m = map(int, input().split())
edge = [tuple(map(lambda x: int(x) - 1, input().split())) for _ in range(m)]
c = list(map(int, input().split()))
w = list(map(int, input().split()))

ufs = [UnionFind(n) for _ in range(2**10)]
ufc = [0] * 2**10

for bit in range(2**10):
    ok = [bit & (1<<i) for i in range(10)]
    for i in range(10):
        if ok[i]: ufc[bit] += w[i]

    for u, v in edge:
        if ok[c[u]-1] and ok[c[v]-1]:
            ufs[bit].unite(u, v)

q = int(input())
for _ in range(q):
    u, v = map(lambda x: int(x) - 1, input().split())
    ans = inf
    for bit in range(2**10):
        if ufs[bit].same(u, v):
            ans = min(ans, ufc[bit])

    print(-1 if ans == inf else ans)
0