結果
問題 | No.1779 Magical Swap |
ユーザー | rlangevin |
提出日時 | 2023-03-15 08:59:59 |
言語 | PyPy3 (7.3.15) |
結果 |
AC
|
実行時間 | 275 ms / 2,000 ms |
コード長 | 1,479 bytes |
コンパイル時間 | 207 ms |
コンパイル使用メモリ | 81,880 KB |
実行使用メモリ | 134,096 KB |
最終ジャッジ日時 | 2024-09-18 08:36:34 |
合計ジャッジ時間 | 4,613 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 39 ms
53,632 KB |
testcase_01 | AC | 38 ms
54,784 KB |
testcase_02 | AC | 151 ms
78,372 KB |
testcase_03 | AC | 100 ms
77,568 KB |
testcase_04 | AC | 174 ms
117,428 KB |
testcase_05 | AC | 120 ms
92,928 KB |
testcase_06 | AC | 126 ms
94,396 KB |
testcase_07 | AC | 164 ms
110,124 KB |
testcase_08 | AC | 77 ms
77,312 KB |
testcase_09 | AC | 117 ms
87,856 KB |
testcase_10 | AC | 210 ms
130,280 KB |
testcase_11 | AC | 146 ms
99,068 KB |
testcase_12 | AC | 97 ms
80,296 KB |
testcase_13 | AC | 189 ms
117,824 KB |
testcase_14 | AC | 230 ms
134,096 KB |
testcase_15 | AC | 275 ms
79,468 KB |
testcase_16 | AC | 173 ms
104,268 KB |
testcase_17 | AC | 178 ms
78,208 KB |
testcase_18 | AC | 38 ms
54,016 KB |
ソースコード
import sys readline = sys.stdin.readline from collections import * class UnionFind(object): def __init__(self, n=1): self.par = [i for i in range(n)] self.rank = [0 for _ in range(n)] self.size = [1 for _ in range(n)] def find(self, x): if self.par[x] == x: return x else: self.par[x] = self.find(self.par[x]) return self.par[x] def union(self, x, y): x = self.find(x) y = self.find(y) if x != y: if self.rank[x] < self.rank[y]: x, y = y, x if self.rank[x] == self.rank[y]: self.rank[x] += 1 self.par[y] = x self.size[x] += self.size[y] def is_same(self, x, y): return self.find(x) == self.find(y) def get_size(self, x): x = self.find(x) return self.size[x] T = int(readline()) for _ in range(T): N = int(readline()) A = list(map(int, readline().split())) B = list(map(int, readline().split())) U = UnionFind(N+1) for i in range(2, N+1): for j in range(2 * i, N+1, i): U.union(i, j) D1 = [defaultdict(int) for i in range(N+1)] D2 = [defaultdict(int) for i in range(N+1)] for i in range(1, N + 1): D1[U.find(i)][A[i-1]] += 1 D2[U.find(i)][B[i-1]] += 1 for i in range(N+1): if D1[i] != D2[i]: print("No") break else: print("Yes")