結果

問題 No.233 めぐるはめぐる (3)
ユーザー 158b158b
提出日時 2015-06-28 13:40:50
言語 C++11
(gcc 11.4.0)
結果
WA  
実行時間 -
コード長 1,207 bytes
コンパイル時間 957 ms
コンパイル使用メモリ 87,272 KB
実行使用メモリ 9,236 KB
最終ジャッジ日時 2023-09-22 03:40:18
合計ジャッジ時間 4,669 ms
ジャッジサーバーID
(参考情報)
judge12 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 81 ms
7,536 KB
testcase_01 AC 52 ms
7,872 KB
testcase_02 AC 26 ms
5,244 KB
testcase_03 AC 57 ms
7,720 KB
testcase_04 AC 89 ms
7,176 KB
testcase_05 WA -
testcase_06 WA -
testcase_07 AC 89 ms
7,564 KB
testcase_08 AC 88 ms
8,508 KB
testcase_09 AC 2 ms
4,376 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,380 KB
testcase_12 AC 52 ms
7,564 KB
testcase_13 AC 82 ms
7,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#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;
}
0