結果
問題 | No.2630 Colorful Vertices and Cheapest Paths |
ユーザー | rlangevin |
提出日時 | 2024-02-16 22:02:32 |
言語 | PyPy3 (7.3.15) |
結果 |
TLE
|
実行時間 | - |
コード長 | 2,694 bytes |
コンパイル時間 | 389 ms |
コンパイル使用メモリ | 82,104 KB |
実行使用メモリ | 162,360 KB |
最終ジャッジ日時 | 2024-09-28 20:20:10 |
合計ジャッジ時間 | 27,859 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 691 ms
99,684 KB |
testcase_01 | AC | 1,448 ms
121,916 KB |
testcase_02 | AC | 1,656 ms
154,560 KB |
testcase_03 | AC | 90 ms
78,672 KB |
testcase_04 | AC | 63 ms
72,872 KB |
testcase_05 | AC | 93 ms
78,968 KB |
testcase_06 | AC | 523 ms
89,156 KB |
testcase_07 | AC | 1,431 ms
159,348 KB |
testcase_08 | AC | 1,377 ms
150,220 KB |
testcase_09 | AC | 1,600 ms
160,928 KB |
testcase_10 | TLE | - |
testcase_11 | AC | 2,077 ms
162,220 KB |
testcase_12 | AC | 2,020 ms
162,120 KB |
testcase_13 | AC | 1,960 ms
162,004 KB |
testcase_14 | AC | 1,980 ms
162,300 KB |
testcase_15 | AC | 624 ms
81,040 KB |
testcase_16 | AC | 614 ms
81,696 KB |
testcase_17 | AC | 627 ms
81,416 KB |
testcase_18 | AC | 749 ms
102,804 KB |
testcase_19 | AC | 1,130 ms
141,736 KB |
testcase_20 | AC | 1,039 ms
130,008 KB |
testcase_21 | AC | 1,265 ms
160,544 KB |
ソースコード
import sys input = sys.stdin.readline #https://github.com/not522/ac-library-python/blob/master/atcoder/dsu.py import typing class DSU: ''' Implement (union by size) + (path halving) Reference: Zvi Galil and Giuseppe F. Italiano, Data structures and algorithms for disjoint set union problems ''' def __init__(self, n: int = 0) -> None: self._n = n self.parent_or_size = [-1] * n def merge(self, a: int, b: int) -> int: assert 0 <= a < self._n assert 0 <= b < self._n x = self.leader(a) y = self.leader(b) if x == y: return x if -self.parent_or_size[x] < -self.parent_or_size[y]: x, y = y, x self.parent_or_size[x] += self.parent_or_size[y] self.parent_or_size[y] = x return x def same(self, a: int, b: int) -> bool: assert 0 <= a < self._n assert 0 <= b < self._n return self.leader(a) == self.leader(b) def leader(self, a: int) -> int: assert 0 <= a < self._n parent = self.parent_or_size[a] while parent >= 0: if self.parent_or_size[parent] < 0: return parent self.parent_or_size[a], a, parent = ( self.parent_or_size[parent], self.parent_or_size[parent], self.parent_or_size[self.parent_or_size[parent]] ) return a def size(self, a: int) -> int: assert 0 <= a < self._n return -self.parent_or_size[self.leader(a)] def groups(self) -> typing.List[typing.List[int]]: leader_buf = [self.leader(i) for i in range(self._n)] result: typing.List[typing.List[int]] = [[] for _ in range(self._n)] for i in range(self._n): result[leader_buf[i]].append(i) return list(filter(lambda r: r, result)) N, M = map(int, input().split()) A, B = [-1] * M, [-1] * M for i in range(M): A[i], B[i] = map(int, input().split()) A[i], B[i] = A[i] - 1, B[i] - 1 C = list(map(int, input().split())) for i in range(N): C[i] -= 1 W = list(map(int, input().split())) K = 1 << 10 U = [DSU(N) for _ in range(K)] cost = [0] * K for s in range(K): for a, b in zip(A, B): if ((s >> C[a]) & 1) and ((s >> C[b]) & 1): U[s].merge(a, b) for i in range(10): if (s >> i) & 1: cost[s] += W[i] Q = int(input()) inf = 10 ** 18 for _ in range(Q): ans = inf u, v = map(int, input().split()) u, v = u - 1, v - 1 for i in range(K): if U[i].same(u, v): ans = min(ans, cost[i]) print(ans) if ans != inf else print(-1)