結果

問題 No.2630 Colorful Vertices and Cheapest Paths
ユーザー PNJPNJ
提出日時 2024-02-16 21:44:25
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,046 ms / 2,500 ms
コード長 2,004 bytes
コンパイル時間 371 ms
コンパイル使用メモリ 82,448 KB
実行使用メモリ 243,264 KB
最終ジャッジ日時 2024-09-28 19:58:36
合計ジャッジ時間 27,041 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 694 ms
118,300 KB
testcase_01 AC 1,347 ms
162,012 KB
testcase_02 AC 1,794 ms
226,484 KB
testcase_03 AC 64 ms
74,104 KB
testcase_04 AC 43 ms
64,744 KB
testcase_05 AC 69 ms
77,124 KB
testcase_06 AC 521 ms
98,048 KB
testcase_07 AC 1,532 ms
237,332 KB
testcase_08 AC 1,438 ms
218,980 KB
testcase_09 AC 1,566 ms
239,344 KB
testcase_10 AC 2,043 ms
242,480 KB
testcase_11 AC 1,976 ms
242,440 KB
testcase_12 AC 1,969 ms
243,112 KB
testcase_13 AC 1,967 ms
243,264 KB
testcase_14 AC 2,046 ms
242,900 KB
testcase_15 AC 650 ms
82,212 KB
testcase_16 AC 629 ms
81,796 KB
testcase_17 AC 647 ms
82,084 KB
testcase_18 AC 722 ms
124,448 KB
testcase_19 AC 1,130 ms
201,648 KB
testcase_20 AC 1,065 ms
179,812 KB
testcase_21 AC 1,301 ms
239,404 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import defaultdict

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.root = [-1]*(n+1)
        self.rank = [0]*(n+1)

    def find(self, x):
        if(self.root[x] < 0):
            return x
        else:
            self.root[x] = self.find(self.root[x])
            return self.root[x]

    def unite(self, x, y):
        x = self.find(x)
        y = self.find(y)

        if(x == y):
            return
        elif(self.rank[x] > self.rank[y]):
            self.root[x] += self.root[y]
            self.root[y] = x
        else:
            self.root[y] += self.root[x]
            self.root[x] = y
            if(self.rank[x] == self.rank[y]):
                self.rank[y] += 1

    def same(self, x, y):
        return self.find(x) == self.find(y)

    def size(self, x):
        return -self.root[self.find(x)]

    def roots(self):
        return [i for i, x in enumerate(self.root) if x < 0]

    def group_size(self):
        return len(self.roots())

    def group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members

N,M = map(int,input().split())
G = [[] for i in range(N)]
E = []
for i in range(M):
  A,B = map(int,input().split())
  A -= 1
  B -= 1
  G[A].append(B)
  G[B].append(A)
  E.append((A,B))
C = list(map(int,input().split()))
for i in range(N):
  C[i] -= 1
W = list(map(int,input().split()))
# bit
CC = [0 for i in range(1<<10)]
for i in range(1<<10):
  for j in range(10):
    if (i >> j) & 1:
      CC[i] += W[j]

UF = [UnionFind(N) for i in range(1<<10)]
for i in range(1<<10):
  for u,v in E:
    if (i >> C[u]) & 1 and (i >> C[v]) & 1:
      UF[i].unite(u,v)

inf = 10**12
Q = int(input())
for _ in range(Q):
  u,v = map(int,input().split())
  u -= 1
  v -= 1
  ans = inf
  for bit in range(1<<10):
    if UF[bit].same(u,v):
      ans = min(ans,CC[bit])
  if ans == inf:
    ans = -1
  print(ans)
0