結果

問題 No.233 めぐるはめぐる (3)
ユーザー kazu0x17kazu0x17
提出日時 2015-07-04 01:26:28
言語 C++11
(gcc 11.4.0)
結果
TLE  
実行時間 -
コード長 1,191 bytes
コンパイル時間 1,324 ms
コンパイル使用メモリ 150,572 KB
実行使用メモリ 11,768 KB
最終ジャッジ日時 2023-09-22 06:05:46
合計ジャッジ時間 4,905 ms
ジャッジサーバーID
(参考情報)
judge12 / judge14
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
7,444 KB
testcase_01 AC 10 ms
5,880 KB
testcase_02 AC 6 ms
4,656 KB
testcase_03 AC 17 ms
6,272 KB
testcase_04 TLE -
testcase_05 -- -
testcase_06 -- -
testcase_07 -- -
testcase_08 -- -
testcase_09 -- -
testcase_10 -- -
testcase_11 -- -
testcase_12 -- -
testcase_13 -- -
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;

int main(int argc, char *argv[]){
  ios::sync_with_stdio(false);
  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;
  char tmp;
  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){
            tmp = vowel[j];
            ans += tmp;
            seq++;
          }
          tmp = consonant[j];
          ans += tmp;
          tmp = vowel[j + seq];
          ans += tmp;
        }
        if(seq == 0)ans += vowel.back();
        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;
}
0