結果

問題 No.2630 Colorful Vertices and Cheapest Paths
ユーザー FromBooskaFromBooska
提出日時 2024-02-17 08:47:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,252 ms / 2,500 ms
コード長 2,719 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 83,644 KB
最終ジャッジ日時 2024-09-28 23:34:03
合計ジャッジ時間 20,353 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 705 ms
80,828 KB
testcase_01 AC 1,214 ms
81,868 KB
testcase_02 AC 918 ms
82,148 KB
testcase_03 AC 92 ms
76,812 KB
testcase_04 AC 53 ms
65,132 KB
testcase_05 AC 89 ms
76,932 KB
testcase_06 AC 404 ms
79,512 KB
testcase_07 AC 693 ms
80,536 KB
testcase_08 AC 685 ms
80,392 KB
testcase_09 AC 707 ms
80,524 KB
testcase_10 AC 1,225 ms
83,508 KB
testcase_11 AC 1,218 ms
83,360 KB
testcase_12 AC 1,191 ms
83,388 KB
testcase_13 AC 1,189 ms
83,644 KB
testcase_14 AC 1,172 ms
83,316 KB
testcase_15 AC 1,221 ms
80,348 KB
testcase_16 AC 1,232 ms
80,140 KB
testcase_17 AC 1,252 ms
80,252 KB
testcase_18 AC 680 ms
79,532 KB
testcase_19 AC 854 ms
80,212 KB
testcase_20 AC 786 ms
79,888 KB
testcase_21 AC 945 ms
81,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# 頂点グループ化はできない、グループ化してもその間の移動は別だから
# C小さいのでビット全探索かTSP、毎回TSPしては間に合わない、ということはビット全探索
# ビット全探索とUnion Findでどうか、クエリ先読み

class UnionFind():
    def __init__(self, n):
        self.n = n
        self.parents = [-1] * n
 
    def find(self, x):
        if self.parents[x] < 0:
            return x
        else:
            self.parents[x] = self.find(self.parents[x])
            return self.parents[x]
 
    def unite(self, x, y):
        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):
        return -self.parents[self.find(x)]
 
    def same(self, x, y):
        return self.find(x) == self.find(y)
 
    def members(self, x):
        root = self.find(x)
        return [i for i in range(self.n) if self.find(i) == root]
 
    def roots(self):
        return [i for i, x in enumerate(self.parents) if x < 0]
 
    def group_count(self):
        return len(self.roots())
 
    def all_group_members(self):
        group_members = defaultdict(list)
        for member in range(self.n):
            group_members[self.find(member)].append(member)
        return group_members
 
    def __str__(self):
        return '\n'.join(f'{r}: {m}' for r, m in self.all_group_members().items())

N, M = map(int, input().split())
edge_list = []
for i in range(M):
    a, b = map(int, input().split())
    edge_list.append((a-1, b-1))
    
C = list(map(int, input().split()))
W = list(map(int, input().split()))

C = [c-1 for c in C]

from collections import defaultdict
Q = int(input())
INF = 10**20
query = defaultdict(int)
query_list = []
for q in range(Q):
    u, v = map(int, input().split())
    u -= 1
    v -= 1
    query_list.append((u, v))
    query[(u, v)] = INF

#from collections import defaultdict
C_len = 10

for bit in range(1<<C_len):
    
    UF_temp = UnionFind(N)
    C_use = set()
    cost_temp = 0
    for shift in range(C_len):
        if bit>>shift&1 == 1:
            C_use.add(shift)
            cost_temp += W[shift]
    
    for a, b in edge_list:
        if C[a] in C_use and C[b] in C_use:
            UF_temp.unite(a, b)
    
    #print('cost_temp', cost_temp, UF_temp.all_group_members())

    for u, v in query_list:
        if UF_temp.same(u, v) == True:
            query[(u, v)] = min(query[(u, v)], cost_temp)
    
for u, v in query_list:
    ans = query[(u, v)]
    if ans == INF:
        print(-1)
    else:
        print(ans)

0