結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | Kmcode1 |
提出日時 | 2015-06-26 22:40:49 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,697 bytes |
コンパイル時間 | 856 ms |
コンパイル使用メモリ | 109,852 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-07-07 17:47:29 |
合計ジャッジ時間 | 3,928 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 94 ms
13,056 KB |
testcase_01 | AC | 60 ms
9,600 KB |
testcase_02 | AC | 29 ms
6,940 KB |
testcase_03 | AC | 68 ms
10,368 KB |
testcase_04 | WA | - |
testcase_05 | AC | 133 ms
13,440 KB |
testcase_06 | AC | 112 ms
13,568 KB |
testcase_07 | AC | 158 ms
13,312 KB |
testcase_08 | AC | 150 ms
13,568 KB |
testcase_09 | AC | 1 ms
6,940 KB |
testcase_10 | AC | 1 ms
6,940 KB |
testcase_11 | AC | 1 ms
6,940 KB |
testcase_12 | AC | 59 ms
9,728 KB |
testcase_13 | AC | 98 ms
13,440 KB |
ソースコード
#include<iostream> #include<cstdio> #include<cstring> #include<string> #include<cctype> #include<cstdlib> #include<algorithm> #include<bitset> #include<vector> #include<list> #include<deque> #include<queue> #include<map> #include<set> #include<stack> #include<cmath> #include<sstream> #include<fstream> #include<iomanip> #include<ctime> #include<complex> #include<functional> #include<climits> #include<cassert> #include<iterator> #include<unordered_map> using namespace std; int n; set<string> s; int main(){ cin >> n; for (int i = 0; i < n; i++){ string k; cin >> k; s.insert(k); } string t = "inabameguru"; vector<char> a; vector<char> b; a.clear(); b.clear(); for (int i = 0; i < t.size(); i++){ if (i % 2){ b.push_back(t[i]); } else{ a.push_back(t[i]); } } sort(a.begin(), a.end()); sort(b.begin(), b.end()); do{ sort(b.begin(), b.end()); do{ string k; k.clear(); for (int i = 0; i < a.size() + b.size()-1; i++){ //i,i+1=a k.clear(); int ind = 0; int indd = 0; bool flag = false; if (i != 0){ flag = true; } for (int j = 0; j < a.size() + b.size(); j++){ if (flag){ k.push_back(b[indd]); indd++; } else{ k.push_back(a[ind]); ind++; } if (j == i - 1){ flag = false; continue; } if (j == i){ flag = false; continue; } flag ^= 1; } if (s.count(k)){ continue; } if (find(a.begin(), a.end(), k.back()) == a.end()){ continue; } cout << k << endl; return 0; } } while (next_permutation(b.begin(), b.end())); } while (next_permutation(a.begin(), a.end())); puts("NO"); return 0; }