結果
| 問題 |
No.233 めぐるはめぐる (3)
|
| コンテスト | |
| ユーザー |
158b
|
| 提出日時 | 2015-06-28 13:40:50 |
| 言語 | C++11(廃止可能性あり) (gcc 13.3.0) |
| 結果 |
WA
|
| 実行時間 | - |
| コード長 | 1,207 bytes |
| コンパイル時間 | 1,135 ms |
| コンパイル使用メモリ | 87,748 KB |
| 実行使用メモリ | 9,296 KB |
| 最終ジャッジ日時 | 2024-07-07 20:26:04 |
| 合計ジャッジ時間 | 4,161 ms |
|
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
| ファイルパターン | 結果 |
|---|---|
| sample | AC * 3 |
| other | AC * 9 WA * 2 |
ソースコード
#include <iostream>
#include <algorithm>
#include <functional>
#include <string>
#include <climits>
#include <vector>
#include <numeric>
#include <complex>
#include <map>
#include <bitset>
using namespace std;
//#define __int64 long long
#define long __int64
#define REP(i,a,b) for(int i=a;i<b;i++)
#define rep(i,n) REP(i,0,n)
const int Vecy[4] = {0,-1,0,1};
const int Vecx[4] = {1,0,-1,0};
int main(){
int n;
vector<string> s;
string in;
string data1 = "aaeiuu";
string data2 = "bgmnr";
string check;
char check1[6] = {'a','a','e','i','u','u'};
char check2[5] = {'b','g','m','n','r'};
bool flg = false;
cin >> n;
if(n == 0){
cout << "inabameguru" << endl;
return 0;
}
rep(i,n){
cin >> in;
s.push_back(in);
}
sort(s.begin(), s.end());
do{
rep(i,5){
check2[i] = data2[i];
}
do{
check = "";
rep(i,5){
check += check1[i];
check += check2[i];
}
check += check1[5];
if(!binary_search(s.begin(), s.end(), check)){
cout << check << endl;
flg = true;
}
}while( next_permutation(check2, check2 + 5) && !flg);
}while( next_permutation(check1, check1 + 6) && !flg);
if(!flg){
cout << "NO" << endl;
}
return 0;
}
158b