結果

問題 No.2630 Colorful Vertices and Cheapest Paths
ユーザー ikomaikoma
提出日時 2024-02-16 22:48:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,287 ms / 2,500 ms
コード長 1,385 bytes
コンパイル時間 285 ms
コンパイル使用メモリ 82,404 KB
実行使用メモリ 162,584 KB
最終ジャッジ日時 2024-09-28 21:25:03
合計ジャッジ時間 27,646 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 687 ms
98,628 KB
testcase_01 AC 1,346 ms
121,148 KB
testcase_02 AC 1,782 ms
153,152 KB
testcase_03 AC 61 ms
71,436 KB
testcase_04 AC 42 ms
62,196 KB
testcase_05 AC 68 ms
73,608 KB
testcase_06 AC 561 ms
87,324 KB
testcase_07 AC 1,489 ms
157,600 KB
testcase_08 AC 1,427 ms
148,816 KB
testcase_09 AC 1,683 ms
159,088 KB
testcase_10 AC 2,287 ms
161,880 KB
testcase_11 AC 1,925 ms
161,400 KB
testcase_12 AC 1,984 ms
162,584 KB
testcase_13 AC 1,944 ms
161,480 KB
testcase_14 AC 2,023 ms
161,532 KB
testcase_15 AC 642 ms
80,328 KB
testcase_16 AC 638 ms
80,124 KB
testcase_17 AC 650 ms
80,144 KB
testcase_18 AC 880 ms
97,068 KB
testcase_19 AC 1,189 ms
136,456 KB
testcase_20 AC 1,110 ms
128,348 KB
testcase_21 AC 1,282 ms
152,420 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline

class UnionFind:
    def __init__(self, n:int):
        self.n = n
        self.parents = [-1] * n
    def find(self, x:int):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]
    def union(self, x:int, y:int):
        x = self.find(x)
        y = self.find(y)
        if x == y: return
        if self.parents[x] > self.parents[y]:
            x, y = y, x
        self.parents[x] += self.parents[y]
        self.parents[y] = x
    def size(self, x:int):
        return -self.parents[self.find(x)]
    def same(self, x:int, y:int):
        return self.find(x) == self.find(y)

N,M=map(int,input().split())
AB=[list(map(lambda x:int(x)-1,input().split())) for _ in range(M)]
C=list(map(lambda x:int(x)-1,input().split()))
W=list(map(int,input().split()))
bit_uf = []
for bit in range(1<<10):
    uf = UnionFind(N)
    for a,b in AB:
        if ((bit>>C[a])&1) and ((bit>>C[b])&1):
            uf.union(a,b)
    cost = 0
    for i in range(10):
        if (bit>>i)&1:
            cost += W[i]
    bit_uf.append((uf,cost))
Q=int(input())

for _ in range(Q):
    u,v=map(lambda x:int(x)-1,input().split())
    ans = 1<<60
    for uf,c in bit_uf:
        if uf.same(u,v):
            ans = min(ans, c)
    print(ans if ans < (1<<60) else -1)
0