結果
問題 | No.2630 Colorful Vertices and Cheapest Paths |
ユーザー | nikoro256 |
提出日時 | 2024-02-16 22:30:26 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 856 ms / 2,500 ms |
コード長 | 2,134 bytes |
コンパイル時間 | 301 ms |
コンパイル使用メモリ | 82,224 KB |
実行使用メモリ | 81,992 KB |
最終ジャッジ日時 | 2024-09-28 21:05:09 |
合計ジャッジ時間 | 13,624 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 454 ms
80,108 KB |
testcase_01 | AC | 754 ms
79,948 KB |
testcase_02 | AC | 685 ms
80,408 KB |
testcase_03 | AC | 71 ms
76,712 KB |
testcase_04 | AC | 48 ms
65,508 KB |
testcase_05 | AC | 73 ms
76,748 KB |
testcase_06 | AC | 308 ms
78,240 KB |
testcase_07 | AC | 521 ms
79,500 KB |
testcase_08 | AC | 479 ms
78,792 KB |
testcase_09 | AC | 505 ms
79,168 KB |
testcase_10 | AC | 849 ms
81,848 KB |
testcase_11 | AC | 856 ms
81,992 KB |
testcase_12 | AC | 842 ms
81,856 KB |
testcase_13 | AC | 827 ms
81,208 KB |
testcase_14 | AC | 851 ms
81,984 KB |
testcase_15 | AC | 658 ms
79,208 KB |
testcase_16 | AC | 637 ms
79,112 KB |
testcase_17 | AC | 665 ms
79,108 KB |
testcase_18 | AC | 347 ms
78,404 KB |
testcase_19 | AC | 474 ms
78,612 KB |
testcase_20 | AC | 412 ms
78,524 KB |
testcase_21 | AC | 505 ms
79,376 KB |
ソースコード
from collections import defaultdict 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 union(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()) import sys input=sys.stdin.readline N,M=map(int,input().split()) exp2=[2**i for i in range(20)] edges=[] for _ in range(M): a,b=map(int,input().split()) a-=1 b-=1 edges.append((a,b)) C=list(map(int,input().split())) W=list(map(int,input().split())) point=[0]*(2**10) for i in range(2**10): for j in range(10): if i&exp2[j]: point[i]+=W[j] Q=int(input()) fa=[10**10]*Q querys=[] for _ in range(Q): u,v=map(int,input().split()) u-=1 v-=1 querys.append((u,v)) for i in range(2**10): uf=UnionFind(N) for a,b in edges: if exp2[C[a]-1]&i and exp2[C[b]-1]&i: uf.union(a,b) for j in range(Q): u,v=querys[j] if uf.same(u,v): fa[j]=min(point[i],fa[j]) for i in range(Q): if fa[i]==10**10: fa[i]=-1 print(*fa,sep='\n')