結果
問題 | No.1779 Magical Swap |
ユーザー | srjywrdnprkt |
提出日時 | 2023-01-16 17:09:42 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 186 ms / 2,000 ms |
コード長 | 1,823 bytes |
コンパイル時間 | 1,562 ms |
コンパイル使用メモリ | 117,432 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-06-09 23:25:26 |
合計ジャッジ時間 | 4,079 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,376 KB |
testcase_02 | AC | 9 ms
5,376 KB |
testcase_03 | AC | 3 ms
5,376 KB |
testcase_04 | AC | 118 ms
12,032 KB |
testcase_05 | AC | 46 ms
6,980 KB |
testcase_06 | AC | 53 ms
7,460 KB |
testcase_07 | AC | 95 ms
10,624 KB |
testcase_08 | AC | 4 ms
5,376 KB |
testcase_09 | AC | 29 ms
5,760 KB |
testcase_10 | AC | 131 ms
12,416 KB |
testcase_11 | AC | 58 ms
7,936 KB |
testcase_12 | AC | 20 ms
5,376 KB |
testcase_13 | AC | 95 ms
10,368 KB |
testcase_14 | AC | 115 ms
13,440 KB |
testcase_15 | AC | 186 ms
5,376 KB |
testcase_16 | AC | 134 ms
13,568 KB |
testcase_17 | AC | 90 ms
5,376 KB |
testcase_18 | AC | 2 ms
5,376 KB |
ソースコード
#include <iostream> #include <vector> #include <cmath> #include <map> #include <set> #include <iomanip> #include <queue> #include <algorithm> #include <numeric> #include <deque> using namespace std; struct UnionFind { vector<long long> par; vector<long long> siz; UnionFind(long long N) : par(N), siz(N) { for(long long i = 0; i < N; i++){ par[i] = i; siz[i] = 1; } } long long root(long long x) { if (par[x] == x) return x; return par[x] = root(par[x]); } long long unite(long long x, long long y) { long long rx = root(x); long long ry = root(y); if (rx == ry) return rx; if (siz[rx] > siz[ry]) swap(rx, ry); par[rx] = ry; siz[ry] += siz[rx]; return ry; } bool same(long long x, long long y) { long long rx = root(x); long long ry = root(y); return rx == ry; } long long size(long long x){ return siz[root(x)]; } }; void solve(){ int N; cin >> N; vector<int> A(N), B(N); multiset<int> st1, st2; for (int i=0; i<N; i++){ cin >> A[i]; st1.insert(A[i]); } for (int i=0; i<N; i++){ cin >> B[i]; st2.insert(B[i]); } if (st1 != st2){ cout << "No" << endl; return; } vector<bool> ok(N+1, 1); for (int i=2; i<=N/2; i++){ for (int j=i; j<=N; j+=i) ok[j] = 0; } for (int i=1; i<=N; i++){ if (ok[i]){ if (A[i-1] != B[i-1]){ cout << "No" << endl; return; } } } cout << "Yes" << endl; return; } int main(){ long long T; cin >> T; while(T){ solve(); T--; } return 0; }