結果
問題 | No.2346 Replace!! |
ユーザー | ぷら |
提出日時 | 2023-06-09 20:08:29 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 2,179 bytes |
コンパイル時間 | 2,311 ms |
コンパイル使用メモリ | 210,076 KB |
実行使用メモリ | 6,948 KB |
最終ジャッジ日時 | 2024-06-10 12:04:26 |
合計ジャッジ時間 | 5,083 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge5 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | AC | 4 ms
5,376 KB |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | WA | - |
testcase_16 | WA | - |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | WA | - |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | WA | - |
testcase_25 | WA | - |
testcase_26 | WA | - |
testcase_27 | WA | - |
testcase_28 | AC | 1 ms
5,376 KB |
testcase_29 | AC | 2 ms
5,376 KB |
testcase_30 | AC | 2 ms
5,376 KB |
testcase_31 | WA | - |
testcase_32 | WA | - |
testcase_33 | WA | - |
testcase_34 | WA | - |
testcase_35 | WA | - |
testcase_36 | WA | - |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | WA | - |
testcase_40 | WA | - |
testcase_41 | WA | - |
testcase_42 | AC | 4 ms
5,376 KB |
testcase_43 | WA | - |
testcase_44 | WA | - |
testcase_45 | AC | 4 ms
5,376 KB |
testcase_46 | AC | 5 ms
5,376 KB |
testcase_47 | AC | 4 ms
5,376 KB |
testcase_48 | AC | 4 ms
5,376 KB |
testcase_49 | AC | 4 ms
5,376 KB |
testcase_50 | AC | 5 ms
5,376 KB |
testcase_51 | AC | 35 ms
5,376 KB |
testcase_52 | AC | 22 ms
5,376 KB |
testcase_53 | AC | 15 ms
5,376 KB |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | WA | - |
testcase_58 | WA | - |
testcase_59 | WA | - |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | WA | - |
testcase_64 | WA | - |
testcase_65 | WA | - |
testcase_66 | AC | 61 ms
5,376 KB |
testcase_67 | WA | - |
testcase_68 | WA | - |
testcase_69 | AC | 62 ms
5,376 KB |
testcase_70 | AC | 60 ms
5,376 KB |
testcase_71 | AC | 62 ms
5,376 KB |
testcase_72 | AC | 61 ms
5,376 KB |
testcase_73 | AC | 62 ms
5,376 KB |
ソースコード
#include<bits/stdc++.h> using namespace std; int main() { ios::sync_with_stdio(false); cin.tie(nullptr); int t; cin >> t; while(t--) { int N; cin >> N; vector<int>A(N),B(N),cnt(N); for(int i = 0; i < N; i++) { cin >> A[i]; A[i]--; cnt[A[i]]++; } for(int i = 0; i < N; i++) { cin >> B[i]; B[i]--; } vector<int>used(N,-1); queue<int>que; for(int i = 0; i < N; i++) { if(cnt[i] == 0) { que.push(i); used[i] = 0; } } while(!que.empty()) { int x = que.front(); que.pop(); cnt[A[x]]--; if(cnt[A[x]] == 0) { used[x] = 0; que.push(x); } } bool flag = true; for(int i = 0; i < N; i++) { vector<int>f(N); f[A[i]] = 1; int now = A[i]; while(true) { now = A[now]; if(f[now]) break; f[now] = 1; } if(!f[B[i]]) { flag = false; } } if(!flag) { cout << "No" << "\n"; continue; } vector<int>ok(N),nxt(N,-1),pre(N,-1); for(int i = 0; i < N; i++) { if(used[i] == -1) { ok[B[i]]++; nxt[i] = A[i]; pre[A[i]] = i; } } for(int i = 0; i < N; i++) { if(ok[i] == 0 && nxt[i] != -1) { que.push(i); } }/* while(!que.empty()) { int x = que.front(); que.pop(); nxt[pre[x]] = nxt[x]; pre[nxt[x]] = pre[x]; ok[B[x]]--; if(ok[B[x]] == 0 && nxt[B[x]] != -1) { que.push(B[x]); } used[x] = 0; }*/ for(int i = 0; i < N; i++) { if(used[i] == -1 && nxt[i] != B[i]) { flag = false; } } cout << ((flag)?"Yes":"No") << "\n"; } }