結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | omu |
提出日時 | 2015-06-26 23:20:38 |
言語 | C++11 (gcc 11.4.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 978 bytes |
コンパイル時間 | 985 ms |
コンパイル使用メモリ | 80,424 KB |
実行使用メモリ | 13,696 KB |
最終ジャッジ日時 | 2024-07-07 18:28:58 |
合計ジャッジ時間 | 3,981 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 104 ms
13,056 KB |
testcase_01 | AC | 63 ms
9,728 KB |
testcase_02 | AC | 28 ms
6,656 KB |
testcase_03 | AC | 69 ms
10,368 KB |
testcase_04 | AC | 107 ms
13,312 KB |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | AC | 111 ms
13,312 KB |
testcase_08 | AC | 112 ms
13,440 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 61 ms
9,600 KB |
testcase_13 | AC | 102 ms
13,312 KB |
ソースコード
#include <iostream> #include <string> #include <algorithm> #include <vector> #include <functional> #include <queue> #include <set> using namespace std; #define For(i,a,b) for(int i = (a);i < (b);i++) #define rep(i,n) For(i,0,n) const int dx[8] = { 1, 0, -1, 0, 1, 1, -1, -1 }, dy[8] = { 0, -1, 0, 1, -1, 1, -1, 1 }; string dc[8] = { ">", "v", "<", "^", ">^", ">v", "<^", "<v" }; typedef pair<int, int> P; int main(){ int n; cin >> n; string s = "inabameguru"; string bs = "iaaeuu"; string cs = "nbmgr"; sort(bs.begin(), bs.end()); sort(cs.begin(), cs.end()); set<string> se; rep(i, n){ string t; cin >> t; se.insert(t); } do{ do{ string t; rep(j, 11){ if (j % 2){ t += cs[j / 2]; } else{ t += bs[j / 2]; } } if (!se.count(t)){ cout << t << endl; return 0; } } while (next_permutation(bs.begin(), bs.end())); } while (next_permutation(cs.begin(), cs.end())); cout << "NO" << endl; return 0; }