結果

問題 No.1779 Magical Swap
ユーザー WizistWizist
提出日時 2021-12-12 22:42:28
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 825 bytes
コンパイル時間 1,867 ms
コンパイル使用メモリ 86,364 KB
実行使用メモリ 125,932 KB
最終ジャッジ日時 2023-09-28 16:24:07
合計ジャッジ時間 5,324 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 86 ms
77,464 KB
testcase_01 AC 88 ms
76,924 KB
testcase_02 WA -
testcase_03 WA -
testcase_04 AC 195 ms
125,932 KB
testcase_05 AC 120 ms
88,620 KB
testcase_06 AC 126 ms
89,640 KB
testcase_07 AC 165 ms
111,788 KB
testcase_08 AC 95 ms
77,536 KB
testcase_09 WA -
testcase_10 WA -
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 203 ms
119,540 KB
testcase_15 AC 478 ms
79,900 KB
testcase_16 AC 145 ms
94,536 KB
testcase_17 WA -
testcase_18 AC 87 ms
77,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import math

N = 100001
fp = [0] * N
for i in range(2, len(fp)):
	if fp[i] == 0:
		fp[i] = i
		for j in range(i * i, len(fp), i):
			if fp[j] == 0: fp[j] = i

def lcm(x, y): return x * y // math.gcd(x, y)

ncases = int(input())
for caseno in range(ncases):
	n = int(input())
	a = list(map(int, input().split()))
	b = list(map(int, input().split()))
	c1, c2 = {}, {}
	for i in range(1, len(a)):
		if a[i] == b[i]: continue
		if a[i] not in c1: c1[a[i]] = []
		if b[i] not in c2: c2[b[i]] = []
		c1[a[i]].append(fp[i + 1])
		c2[b[i]].append(fp[i + 1])
	def check():
		if a[0] != b[0]: return False
		for x in c1:
			a1 = c1.get(x, []); a2 = c2.get(x, [])
			if len(a1) != len(a2): return False
			a1.sort(); a2.sort()
			if lcm(a[-1], 2) > n or lcm(a1[-1], 2) > n: return False
		return True

	print("Yes" if check() else "No")
0