結果

問題 No.1779 Magical Swap
ユーザー 沙耶花沙耶花
提出日時 2021-12-08 00:04:30
言語 C++17
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 188 ms / 2,000 ms
コード長 813 bytes
コンパイル時間 4,488 ms
コンパイル使用メモリ 266,180 KB
実行使用メモリ 9,892 KB
最終ジャッジ日時 2024-07-16 07:37:00
合計ジャッジ時間 5,978 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 3 ms
6,940 KB
testcase_02 AC 10 ms
6,940 KB
testcase_03 AC 3 ms
6,940 KB
testcase_04 AC 49 ms
8,892 KB
testcase_05 AC 22 ms
6,944 KB
testcase_06 AC 24 ms
6,940 KB
testcase_07 AC 42 ms
8,396 KB
testcase_08 AC 3 ms
6,944 KB
testcase_09 AC 13 ms
6,940 KB
testcase_10 AC 50 ms
9,284 KB
testcase_11 AC 27 ms
6,944 KB
testcase_12 AC 10 ms
6,944 KB
testcase_13 AC 39 ms
8,120 KB
testcase_14 AC 51 ms
9,892 KB
testcase_15 AC 188 ms
6,944 KB
testcase_16 AC 48 ms
9,888 KB
testcase_17 AC 43 ms
6,940 KB
testcase_18 AC 2 ms
6,948 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <stdio.h>
#include <bits/stdc++.h>
#include <atcoder/all>
using namespace atcoder;
using mint = modint998244353;
using namespace std;
#define rep(i,n) for(int i=0;i<(n);i++)
#define Inf 1000000001

int main(){
	
	int _t;
	cin>>_t;
	
	rep(_,_t){
		int n;
		cin>>n;
		
		dsu D(n);
		for(int i=2;i<=n;i++){
			for(int j=i;j+i<=n;j+=i){
				D.merge(j-1,j+i-1);
			}
		}
		vector<vector<int>> a(n),b(n);
		rep(i,n){
			int t;
			scanf("%d",&t);
			a[D.leader(i)].push_back(t);
		}
		rep(i,n){
			int t;
			scanf("%d",&t);
			b[D.leader(i)].push_back(t);
		}
		bool f = true;
		rep(i,n){
			sort(a[i].begin(),a[i].end());
			sort(b[i].begin(),b[i].end());
			if(a[i]!=b[i]){
				f = false;
				//cout<<i<<','<<a[i].size()<<endl;
			}
		}
		if(f)cout<<"Yes"<<endl;
		else cout<<"No"<<endl;
			
	}
	
	return 0;
}
0