結果
問題 | No.1779 Magical Swap |
ユーザー | 👑 rin204 |
提出日時 | 2022-01-21 10:39:39 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 487 ms / 2,000 ms |
コード長 | 1,863 bytes |
コンパイル時間 | 224 ms |
コンパイル使用メモリ | 82,600 KB |
実行使用メモリ | 103,648 KB |
最終ジャッジ日時 | 2024-05-03 23:07:42 |
合計ジャッジ時間 | 4,342 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 37 ms
52,888 KB |
testcase_01 | AC | 39 ms
54,040 KB |
testcase_02 | AC | 172 ms
77,728 KB |
testcase_03 | AC | 73 ms
76,848 KB |
testcase_04 | AC | 118 ms
98,704 KB |
testcase_05 | AC | 87 ms
85,176 KB |
testcase_06 | AC | 90 ms
86,356 KB |
testcase_07 | AC | 118 ms
97,772 KB |
testcase_08 | AC | 59 ms
69,180 KB |
testcase_09 | AC | 105 ms
80,876 KB |
testcase_10 | AC | 167 ms
100,316 KB |
testcase_11 | AC | 124 ms
87,848 KB |
testcase_12 | AC | 99 ms
79,032 KB |
testcase_13 | AC | 145 ms
95,084 KB |
testcase_14 | AC | 163 ms
103,648 KB |
testcase_15 | AC | 487 ms
77,832 KB |
testcase_16 | AC | 127 ms
96,728 KB |
testcase_17 | AC | 183 ms
77,376 KB |
testcase_18 | AC | 37 ms
53,944 KB |
ソースコード
class UnionFind(): def __init__(self, n): self.n = n self.parents = [-1] * n self.group = 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 self.group -= 1 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 self.group def all_group_members(self): dic = {r:[] for r in self.roots()} for i in range(self.n): dic[self.find(i)].append(i) return dic def __str__(self): return '\n'.join('{}: {}'.format(r, self.members(r)) for r in self.roots()) def solve(): n = int(input()) A = list(map(int, input().split())) B = list(map(int, input().split())) UF = UnionFind(n) for i in range(2, n + 1): for j in range(2 * i, n + 1, i): UF.union(i - 1, j - 1) for group in UF.all_group_members().values(): cnt = {} for g in group: cnt[A[g]] = cnt.get(A[g], 0) + 1 cnt[B[g]] = cnt.get(B[g], 0) - 1 if any(c != 0 for c in cnt.values()): print("No") return print("Yes") for _ in range(int(input())): solve()