結果

問題 No.233 めぐるはめぐる (3)
ユーザー yaoshimaxyaoshimax
提出日時 2015-06-28 22:03:12
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 176 ms / 1,000 ms
コード長 845 bytes
コンパイル時間 707 ms
コンパイル使用メモリ 70,288 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-07-07 20:53:03
合計ジャッジ時間 4,543 ms
ジャッジサーバーID
(参考情報)
judge2 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 131 ms
13,056 KB
testcase_01 AC 77 ms
9,600 KB
testcase_02 AC 35 ms
6,944 KB
testcase_03 AC 89 ms
10,368 KB
testcase_04 AC 176 ms
13,440 KB
testcase_05 AC 163 ms
13,440 KB
testcase_06 AC 158 ms
13,568 KB
testcase_07 AC 175 ms
13,440 KB
testcase_08 AC 174 ms
13,312 KB
testcase_09 AC 2 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 2 ms
6,940 KB
testcase_12 AC 85 ms
9,728 KB
testcase_13 AC 142 ms
13,312 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <string>
#include <set>
using namespace std;
int main(){
   int N;
   cin >> N;
   set<string> S;
   for( int i = 0 ; i < N; i++ ){
      string s;
      cin >> s;
      S.insert(s);
   }
   string boin="aaeiuu";
   string siin="bgmnr";
   int p1[]={0,1,2,3,4};
   int p2[]={0,1,2,3,4};
   do{
      do{
         for( int pos=0 ; pos<6; pos++ ){
            string s="";
            for( int i=0; i<5; i++){
               if( i==pos ) s+= boin[5];
               s+=siin[p1[i]];
               s+=boin[p2[i]];
            }
            if( pos==5 ) s+= boin[5];
            if( S.find(s) == S.end() ){
               cout << s<< endl;
               return 0;
            }
         }

      }while( next_permutation(p2,p2+5) );
   }while( next_permutation(p1,p1+5) );
   cout << "NO"<<endl;
}
0