結果
| 問題 |
No.233 めぐるはめぐる (3)
|
| コンテスト | |
| ユーザー |
kazu0x17
|
| 提出日時 | 2015-07-04 00:46:57 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,188 bytes |
| コンパイル時間 | 1,529 ms |
| コンパイル使用メモリ | 164,196 KB |
| 実行使用メモリ | 7,424 KB |
| 最終ジャッジ日時 | 2024-07-07 22:47:43 |
| 合計ジャッジ時間 | 6,321 ms |
|
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 1 WA * 2 |
| other | AC * 2 WA * 9 |
ソースコード
#include<bits/stdc++.h>
using namespace std;
char v[] = {'a', 'i', 'u', 'e', 'o'};
int main(int argc, char *argv[]){
int n;
cin >> n;
string used[n];
for (int i = 0; i < n; i++) {
cin >> used[i];
}
string vowel = "iaaeuu";
string consonant = "nbmgr";
sort(vowel.begin(), vowel.end());
sort(consonant.begin(), consonant.end());
bool ok;
string ans;
do{
do{
ok = true;
for (int i = 0; i < 6; i++) {
ans = "";
int seq = 0;
for (int j = 0; j < 5; j++) {
if(i == j){
ans += vowel.substr(j, 1);
seq++;
}
ans += consonant.substr(j, 1) + vowel.substr(j + seq, 1);
//std::cout << ans << std::endl;
}
if(seq == 0)ans += vowel.substr(5, 1);
for (int j = 0; j < n; j++) {
if(used[j] != ans)continue;
ok = false;
break;
}
if(!ok)break;
}
if(!ok)break;
}while(next_permutation(consonant.begin(), consonant.end()));
if(!ok)break;
}while(next_permutation(vowel.begin(), vowel.end()));
if(ok)std::cout << ans << std::endl;
else std::cout << "NO" << std::endl;
return 0;
}
kazu0x17