結果

問題 No.233 めぐるはめぐる (3)
ユーザー なおなお
提出日時 2015-06-27 00:03:56
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 143 ms / 1,000 ms
コード長 825 bytes
コンパイル時間 1,279 ms
コンパイル使用メモリ 169,200 KB
実行使用メモリ 13,568 KB
最終ジャッジ日時 2024-07-07 19:26:48
合計ジャッジ時間 4,180 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 98 ms
13,184 KB
testcase_01 AC 59 ms
9,472 KB
testcase_02 AC 30 ms
6,400 KB
testcase_03 AC 70 ms
10,496 KB
testcase_04 AC 110 ms
13,440 KB
testcase_05 AC 121 ms
13,440 KB
testcase_06 AC 126 ms
13,568 KB
testcase_07 AC 142 ms
13,568 KB
testcase_08 AC 143 ms
13,440 KB
testcase_09 AC 1 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 1 ms
5,376 KB
testcase_12 AC 65 ms
9,728 KB
testcase_13 AC 106 ms
13,440 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#define REP(i, n)           for(int(i)=0;(i)<(n);++(i))
#define EACH(it, c)         for(auto it=(c).begin();it!=(c).end();++it)

int main(){
    int N;
    cin >> N;
    set<string> S;
    REP(i,N){
        string s; cin >> s;
        S.insert(s);
    }

    string s0 = "nbmgr*";
    string s1 = "iaaeuu";
    sort(s0.begin(), s0.end());
    sort(s1.begin(), s1.end());

    do {
        do {
            string k;
            REP(i,6){
                if(s0[i] != '*') k += s0[i];
                k += s1[i];
            }
            if(S.count(k)) continue;
            cout << k << endl;
            return 0;
          
        } while(next_permutation(s1.begin(), s1.end()));
    } while(next_permutation(s0.begin(), s0.end()));

    cout << "NO" << endl;
    return 0;
}
0