結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | face4 |
提出日時 | 2019-02-13 17:29:00 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 196 ms / 1,000 ms |
コード長 | 989 bytes |
コンパイル時間 | 890 ms |
コンパイル使用メモリ | 78,772 KB |
実行使用メモリ | 13,696 KB |
最終ジャッジ日時 | 2024-09-13 11:07:35 |
合計ジャッジ時間 | 4,741 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 128 ms
13,184 KB |
testcase_01 | AC | 75 ms
9,856 KB |
testcase_02 | AC | 33 ms
6,940 KB |
testcase_03 | AC | 83 ms
10,496 KB |
testcase_04 | AC | 188 ms
13,440 KB |
testcase_05 | AC | 160 ms
13,440 KB |
testcase_06 | AC | 149 ms
13,696 KB |
testcase_07 | AC | 195 ms
13,568 KB |
testcase_08 | AC | 196 ms
13,568 KB |
testcase_09 | AC | 2 ms
6,940 KB |
testcase_10 | AC | 2 ms
6,940 KB |
testcase_11 | AC | 2 ms
6,940 KB |
testcase_12 | AC | 80 ms
9,856 KB |
testcase_13 | AC | 138 ms
13,440 KB |
ソースコード
#include<iostream> #include<algorithm> #include<set> using namespace std; int main(){ int n; cin >> n; set<string> used; string s; for(int i = 0; i < n; i++){ cin >> s; used.insert(s); } string vowel = "aaeiuu", conso = "bgmnr"; do{ do{ for(int i = 0; i < 6; i++){ string t = ""; int vpos = 0, cpos = 0; for(int j = 0; j < 5; j++){ if(i == j) t += vowel.substr(vpos++, 1); t += conso.substr(cpos++, 1); t += vowel.substr(vpos++, 1); } if(i == 5) t += vowel.substr(vpos++, 1); if(used.count(t) == 0){ cout << t << endl; return 0; } } }while(next_permutation(conso.begin(), conso.end())); }while(next_permutation(vowel.begin(), vowel.end())); cout << "NO" << endl; return 0; }