結果

問題 No.1779 Magical Swap
ユーザー roarisroaris
提出日時 2021-12-08 04:59:32
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 364 ms / 2,000 ms
コード長 1,533 bytes
コンパイル時間 242 ms
コンパイル使用メモリ 82,180 KB
実行使用メモリ 104,688 KB
最終ジャッジ日時 2024-07-16 07:39:45
合計ジャッジ時間 5,155 ms
ジャッジサーバーID
(参考情報)
judge1 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
55,184 KB
testcase_01 AC 45 ms
54,944 KB
testcase_02 AC 148 ms
77,232 KB
testcase_03 AC 101 ms
76,712 KB
testcase_04 AC 334 ms
101,712 KB
testcase_05 AC 179 ms
86,020 KB
testcase_06 AC 192 ms
86,224 KB
testcase_07 AC 281 ms
97,912 KB
testcase_08 AC 79 ms
76,664 KB
testcase_09 AC 141 ms
82,132 KB
testcase_10 AC 363 ms
102,252 KB
testcase_11 AC 215 ms
89,444 KB
testcase_12 AC 124 ms
79,728 KB
testcase_13 AC 282 ms
97,800 KB
testcase_14 AC 364 ms
104,688 KB
testcase_15 AC 212 ms
78,672 KB
testcase_16 AC 348 ms
96,372 KB
testcase_17 AC 230 ms
77,688 KB
testcase_18 AC 43 ms
54,604 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *

class Unionfind:
    def __init__(self, n):
        self.par = [-1]*n
        self.rank = [1]*n
    
    def root(self, x):
        r = x
        
        while not self.par[r]<0:
            r = self.par[r]
        
        t = x
        
        while t!=r:
            tmp = t
            t = self.par[t]
            self.par[tmp] = r
        
        return r
    
    def unite(self, x, y):
        rx = self.root(x)
        ry = self.root(y)
        
        if rx==ry:
            return
        
        if self.rank[rx]<=self.rank[ry]:
            self.par[ry] += self.par[rx]
            self.par[rx] = ry
            
            if self.rank[rx]==self.rank[ry]:
                self.rank[ry] += 1
        else:
            self.par[rx] += self.par[ry]
            self.par[ry] = rx
    
    def is_same(self, x, y):
        return self.root(x)==self.root(y)
    
    def count(self, x):
        return -self.par[self.root(x)]

for _ in range(int(input())):
    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.unite(i-1, j-1)
    
    da = defaultdict(set)
    db = defaultdict(set)
    
    for i in range(N):
        r = uf.root(i)
        da[r].add(A[i])
        db[r].add(B[i])
    
    for k in da:
        if da[k]!=db[k]:
            print('No')
            break
    else:
        print('Yes')
0