結果
問題 | No.100 直列あみだくじ |
ユーザー | omochana1 |
提出日時 | 2014-12-14 22:15:12 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,767 bytes |
コンパイル時間 | 793 ms |
コンパイル使用メモリ | 87,348 KB |
実行使用メモリ | 18,852 KB |
最終ジャッジ日時 | 2024-06-11 21:08:03 |
合計ジャッジ時間 | 7,448 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | TLE | - |
testcase_05 | -- | - |
testcase_06 | -- | - |
testcase_07 | -- | - |
testcase_08 | -- | - |
testcase_09 | -- | - |
testcase_10 | -- | - |
testcase_11 | -- | - |
testcase_12 | -- | - |
testcase_13 | -- | - |
testcase_14 | -- | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
testcase_21 | -- | - |
testcase_22 | -- | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
testcase_32 | -- | - |
testcase_33 | -- | - |
testcase_34 | -- | - |
testcase_35 | -- | - |
testcase_36 | -- | - |
testcase_37 | -- | - |
testcase_38 | -- | - |
testcase_39 | -- | - |
testcase_40 | -- | - |
testcase_41 | -- | - |
testcase_42 | -- | - |
testcase_43 | -- | - |
testcase_44 | -- | - |
testcase_45 | -- | - |
testcase_46 | -- | - |
testcase_47 | -- | - |
ソースコード
#include <iostream> #include <cmath> #include <cstdio> #include <algorithm> #include <string> #include <vector> #include <queue> #include <string.h> #include <map> #include <fstream> #include <functional> #include <bitset> #include <iomanip> #include <stack> #include <set> #include <climits> #define MAX_N 200010 #define PI 3.141592653589 #define ESP 1e-20 #define BS 10 #define MOD 1000000007 #define ZERO 10001 #define YJSNPI 810 #define INF (1LL << 50) #define ADD(a, b) a = (a + (ll)b) % MOD #define MUL(a, b) a = (a * (ll)b) % MOD #define MAX(a, b) a = max(a, b) #define MIN(a, b) a = min(a, b) using namespace std; typedef pair<int, int> pi; typedef long long ll; int N; int goal[100], rev[100], ans[100]; bool loop(int at) { /* cout << at << " "; for(int i = 0; i < N; i++) { cout << ans[i] << " "; } cout << endl; */ if(ans[at] == -1) { for(int i = 0; i < N; i++) { ans[at] = i; if(ans[i] == -1) ans[i] = rev[at]; else if(ans[i] != rev[at]) { ans[at] = -1; continue; } if(loop(i)) return true; ans[at] = -1; ans[i] = -1; } } else { if(ans[ans[at]] == -1) { ans[ans[at]] = rev[at]; if(loop(ans[ans[at]])) return true; ans[ans[at]] = -1; return false; } if(goal[ans[ans[at]]] != at) return false; bool found = false; for(int i = 0; i < N; i++) { if(ans[i] == -1) { if(loop(i)) return true; found = true; break; } } if(!found) return true; else return false; } return false; } int main() { cin >> N; for(int i = 0; i < N; i++) { cin >> goal[i]; goal[i]--; rev[goal[i]] = i; } memset(ans, -1, sizeof(ans)); if(loop(0)) cout << "Yes" << endl; else cout << "No" << endl; }