結果

問題 No.233 めぐるはめぐる (3)
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2022-12-31 04:58:49
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 280 ms / 1,000 ms
コード長 1,046 bytes
コンパイル時間 1,043 ms
コンパイル使用メモリ 120,808 KB
実行使用メモリ 13,696 KB
最終ジャッジ日時 2024-05-04 15:09:28
合計ジャッジ時間 5,678 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 108 ms
13,184 KB
testcase_01 AC 62 ms
9,728 KB
testcase_02 AC 28 ms
6,944 KB
testcase_03 AC 72 ms
10,496 KB
testcase_04 AC 229 ms
13,568 KB
testcase_05 AC 196 ms
13,568 KB
testcase_06 AC 158 ms
13,568 KB
testcase_07 AC 266 ms
13,696 KB
testcase_08 AC 280 ms
13,568 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 1 ms
6,940 KB
testcase_11 AC 1 ms
6,944 KB
testcase_12 AC 62 ms
9,856 KB
testcase_13 AC 109 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;

int main(){

    int N;
    cin >> N;
    string S = "iaaeuu", T = "nbmgr", U, V, W;
    vector<int> a(6), b(5);
    set<string> st;
    for (int i=0; i<N; i++){
        cin >> W;
        st.insert(W);
    }
    iota(a.begin(), a.end(), 0); iota(b.begin(), b.end(), 0);

    do{
        do{
            U = "";
            for (int i=0; i<5; i++){
                U += T[b[i]];
                U += S[a[i]];
            }
            for (int i=0; i<11; i+=2){
                V = U.substr(0, i) + S[a[5]] + U.substr(i);
                if (!st.count(V)){
                    cout << V << endl;
                    return 0;
                }
            }
        } while(next_permutation(b.begin(), b.end()));
    } while(next_permutation(a.begin(), a.end()));

    cout << "NO" << endl;

    return 0;
}
0