結果

問題 No.1779 Magical Swap
ユーザー H20H20
提出日時 2021-12-08 01:03:48
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 571 ms / 2,000 ms
コード長 1,989 bytes
コンパイル時間 314 ms
コンパイル使用メモリ 81,664 KB
実行使用メモリ 117,492 KB
最終ジャッジ日時 2024-07-16 07:38:30
合計ジャッジ時間 4,429 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,144 KB
testcase_01 AC 42 ms
54,656 KB
testcase_02 AC 261 ms
79,376 KB
testcase_03 AC 93 ms
76,812 KB
testcase_04 AC 161 ms
111,732 KB
testcase_05 AC 110 ms
88,448 KB
testcase_06 AC 116 ms
89,588 KB
testcase_07 AC 150 ms
102,520 KB
testcase_08 AC 64 ms
72,064 KB
testcase_09 AC 115 ms
83,072 KB
testcase_10 AC 201 ms
115,116 KB
testcase_11 AC 147 ms
93,888 KB
testcase_12 AC 110 ms
80,384 KB
testcase_13 AC 172 ms
100,596 KB
testcase_14 AC 207 ms
117,492 KB
testcase_15 AC 571 ms
79,180 KB
testcase_16 AC 147 ms
100,212 KB
testcase_17 AC 242 ms
78,188 KB
testcase_18 AC 40 ms
53,760 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# UnionFind 参考は以下のサイト
# https://note.nkmk.me/python-union-find/
from collections import defaultdict
from collections import Counter

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())


T = int(input())
for _ in range(T):
    N = int(input())
    uf = UnionFind(N+1)
    A = list(map(int, input().split())) 
    B = list(map(int, input().split()))
    for x in range(2,N+1):
        for y in range(x*2,N+1,x):
            uf.union(x,y)
    GM = uf.all_group_members()
    ans = True
    for k,l in GM.items():
        CA = Counter()
        CB = Counter()
        for v in l:
            if v==0:
                continue
            CA[A[v-1]]+=1
            CB[B[v-1]]+=1
        ans = ans and CA==CB
    if ans:
        print('Yes')
    else:
        print('No')

0