結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | koba-e964 |
提出日時 | 2015-06-30 21:14:23 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 176 ms / 1,000 ms |
コード長 | 957 bytes |
コンパイル時間 | 799 ms |
コンパイル使用メモリ | 84,048 KB |
実行使用メモリ | 13,568 KB |
最終ジャッジ日時 | 2024-07-07 21:30:05 |
合計ジャッジ時間 | 4,132 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 121 ms
13,184 KB |
testcase_01 | AC | 71 ms
9,600 KB |
testcase_02 | AC | 32 ms
6,940 KB |
testcase_03 | AC | 82 ms
10,368 KB |
testcase_04 | AC | 133 ms
13,440 KB |
testcase_05 | AC | 155 ms
13,568 KB |
testcase_06 | AC | 161 ms
13,312 KB |
testcase_07 | AC | 171 ms
13,440 KB |
testcase_08 | AC | 176 ms
13,568 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,944 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 71 ms
9,728 KB |
testcase_13 | AC | 128 ms
13,184 KB |
ソースコード
#include <algorithm> #include <iomanip> #include <iostream> #include <list> #include <map> #include <numeric> #include <queue> #include <set> #include <sstream> #include <stack> #include <string> #include <utility> #include <vector> #define REP(i,s,n) for(int i=(int)(s);i<(int)(n);i++) using namespace std; typedef long long int ll; typedef vector<int> VI; typedef pair<int, int> PI; const double EPS=1e-9; set<string> pool; string solve() { REP(i, 0, 6) { string a = "aaeiuu"; do { string b = "bgmnr"; do { string s; REP(j, 0, i) { s += b[j]; s += a[j]; } s += a[i]; REP(j, i, 5) { s += b[j]; s += a[j + 1]; } if (!pool.count(s)) { return s; } } while (next_permutation(b.begin(), b.end())); } while (next_permutation(a.begin(), a.end())); } return "NO"; } int main(void){ int n; cin >> n; REP(i, 0, n) { string s; cin >> s; pool.insert(s); } cout << solve() << endl; }