結果
問題 | No.1779 Magical Swap |
ユーザー | maguro |
提出日時 | 2021-12-09 11:13:44 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 196 ms / 2,000 ms |
コード長 | 1,836 bytes |
コンパイル時間 | 2,283 ms |
コンパイル使用メモリ | 209,904 KB |
実行使用メモリ | 6,944 KB |
最終ジャッジ日時 | 2024-07-17 04:29:35 |
合計ジャッジ時間 | 5,057 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
6,812 KB |
testcase_01 | AC | 3 ms
6,944 KB |
testcase_02 | AC | 11 ms
6,940 KB |
testcase_03 | AC | 4 ms
6,944 KB |
testcase_04 | AC | 83 ms
6,944 KB |
testcase_05 | AC | 37 ms
6,940 KB |
testcase_06 | AC | 42 ms
6,940 KB |
testcase_07 | AC | 71 ms
6,944 KB |
testcase_08 | AC | 5 ms
6,944 KB |
testcase_09 | AC | 23 ms
6,944 KB |
testcase_10 | AC | 87 ms
6,940 KB |
testcase_11 | AC | 46 ms
6,944 KB |
testcase_12 | AC | 17 ms
6,940 KB |
testcase_13 | AC | 68 ms
6,940 KB |
testcase_14 | AC | 73 ms
6,944 KB |
testcase_15 | AC | 196 ms
6,944 KB |
testcase_16 | AC | 91 ms
6,940 KB |
testcase_17 | AC | 90 ms
6,940 KB |
testcase_18 | AC | 2 ms
6,940 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; constexpr int Inf = 2000000000; constexpr long long INF= 2000000000000000000; template<typename T> inline bool chmax(T &a, T b) { if (a < b) { a = b; return true; } return false; } template<typename T> inline bool chmin(T &a, T b) { if (a > b) { a = b; return true; } return false; } template<typename T,typename U> T modpow(T N, U P, T M = -1) { if(P < 0) return 0; T ret = 1; if(M != -1) ret %= M; while(P) { if(P & 1) { if(M == -1) ret *= N; else ret = ret * N % M; } P /= 2; if(M == -1) N *= N; else N = N * N % M; } return ret; } constexpr long long MOD = 1000000007; int main() { vector<bool> is_prime(100001,true); vector<int> prime; is_prime[0] = false; is_prime[1] = false; for(int i = 2;i < 100001;i++) { if(is_prime[i]) { prime.push_back(i); for(int j = 2;j <= 100000 / i;j++) { is_prime[i * j] = false; } } } int t; cin >> t; for(int tmp = 0;tmp < t;tmp++) { int n; cin >> n; vector<int> a(n); vector<int> b(n); for(auto& x: a) cin >> x; for(auto& x: b) cin >> x; bool ret = true; int itr = upper_bound(prime.begin(),prime.end(),n / 2) - prime.begin(); int itr2 = upper_bound(prime.begin(),prime.end(),n) - prime.begin(); if(a[0] != b[0]) ret = false; for(int i = itr;i < itr2;i++) { if(a[prime[i] - 1] != b[prime[i] - 1]) ret = false; } sort(a.begin(),a.end()); sort(b.begin(),b.end()); for(int i = 0;i < n;i++) { if(a[i] != b[i]) ret = false; } if(ret) cout << "Yes" << endl; else cout << "No" << endl; } }