結果

問題 No.2630 Colorful Vertices and Cheapest Paths
ユーザー FromBooskaFromBooska
提出日時 2024-02-17 08:47:14
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,161 ms / 2,500 ms
コード長 2,719 bytes
コンパイル時間 410 ms
コンパイル使用メモリ 81,572 KB
実行使用メモリ 83,040 KB
最終ジャッジ日時 2024-02-17 08:47:37
合計ジャッジ時間 19,132 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 670 ms
80,412 KB
testcase_01 AC 1,083 ms
81,588 KB
testcase_02 AC 820 ms
81,392 KB
testcase_03 AC 76 ms
76,472 KB
testcase_04 AC 62 ms
64,452 KB
testcase_05 AC 71 ms
76,208 KB
testcase_06 AC 374 ms
79,384 KB
testcase_07 AC 618 ms
80,112 KB
testcase_08 AC 627 ms
79,984 KB
testcase_09 AC 648 ms
80,112 KB
testcase_10 AC 1,082 ms
82,912 KB
testcase_11 AC 1,107 ms
82,916 KB
testcase_12 AC 1,131 ms
82,788 KB
testcase_13 AC 1,111 ms
83,040 KB
testcase_14 AC 1,144 ms
83,028 KB
testcase_15 AC 1,161 ms
79,984 KB
testcase_16 AC 1,132 ms
79,664 KB
testcase_17 AC 1,120 ms
79,828 KB
testcase_18 AC 647 ms
78,984 KB
testcase_19 AC 790 ms
80,112 KB
testcase_20 AC 716 ms
79,728 KB
testcase_21 AC 882 ms
80,880 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