結果

問題 No.233 めぐるはめぐる (3)
ユーザー hirokazu1020hirokazu1020
提出日時 2015-07-25 19:11:41
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 380 ms / 1,000 ms
コード長 970 bytes
コンパイル時間 953 ms
コンパイル使用メモリ 93,932 KB
実行使用メモリ 7,296 KB
最終ジャッジ日時 2024-07-08 13:49:37
合計ジャッジ時間 4,451 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 76 ms
7,168 KB
testcase_01 AC 50 ms
5,760 KB
testcase_02 AC 27 ms
5,376 KB
testcase_03 AC 55 ms
6,016 KB
testcase_04 AC 356 ms
7,296 KB
testcase_05 AC 192 ms
7,252 KB
testcase_06 AC 178 ms
7,220 KB
testcase_07 AC 380 ms
7,208 KB
testcase_08 AC 371 ms
7,268 KB
testcase_09 AC 6 ms
5,376 KB
testcase_10 AC 7 ms
5,376 KB
testcase_11 AC 7 ms
5,376 KB
testcase_12 AC 54 ms
5,760 KB
testcase_13 AC 77 ms
7,168 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<sstream>
#include<iostream>
#include<cstdio>
#include<cstdlib>
#include<cstring>
#include<cmath>
#include<string>
#include<vector>
#include<set>
#include<map>
#include<queue>
#include<numeric>
#include<functional>
#include<algorithm>
#include<bitset>
#include<cctype>
using namespace std;
#define INF (1<<29)
#define rep(i,n) for(int i=0;i<(int)(n);i++)
#define all(v) v.begin(),v.end()
#define uniq(v) v.erase(unique(all(v)),v.end())
#define indexOf(v,x) (find(all(v),x)-v.begin())


bool siin(char c){
	return c!='a'&&c!='i'&&c!='u'&&c!='e'&&c!='o';
}

int main(){
	string str("inabameguru");
	int n;
	cin>>n;
	vector<string> s(n);
	rep(i,n)cin>>s[i];
	sort(all(str));
	sort(all(s));
	do{
		bool ok=true;
		rep(i,str.size()-1){
			if(siin(str[i])&&siin(str[i+1]))ok=false;
		}
		if(siin(str[str.size()-1]))ok=false;
		if(ok&&!binary_search(all(s),str)){
			cout<<str<<endl;
			return 0;
		}
	}while(next_permutation(all(str)));
	cout<<"NO"<<endl;
	return 0;
}
0