結果

問題 No.233 めぐるはめぐる (3)
コンテスト
ユーザー kimiyuki
提出日時 2016-01-14 17:51:23
言語 C++11
(gcc 15.2.0 + boost 1.89.0)
コンパイル:
g++-15 -O2 -lm -std=gnu++11 -Wuninitialized -DONLINE_JUDGE -o a.out _filename_
実行:
./a.out
結果
WA  
実行時間 -
コード長 969 bytes
記録
記録タグの例:
初AC ショートコード 純ショートコード 純主流ショートコード 最速実行時間
コンパイル時間 690 ms
コンパイル使用メモリ 101,352 KB
実行使用メモリ 12,788 KB
最終ジャッジ日時 2026-04-08 07:07:15
合計ジャッジ時間 3,364 ms
ジャッジサーバーID
(参考情報)
judge2_0 / judge1_1
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 9 WA * 2
権限があれば一括ダウンロードができます

ソースコード

diff #
raw source code

#include <iostream>
#include <vector>
#include <algorithm>
#include <unordered_set>
#define repeat(i,n) for (int i = 0; (i) < (n); ++(i))
using namespace std;
int main() {
    int n; cin >> n;
    unordered_set<string> s;
    repeat (i,n) {
        string t; cin >> t;
        s.insert(t);
    }
    string vowels = "iaaeuU"; sort(vowels.begin(), vowels.end());
    do {
        string consonants = "nbmgr"; sort(consonants.begin(), consonants.end());
        do {
            string t;
            repeat (i, vowels.length() + consonants.length()) {
                t += (i % 2 == 0 ? vowels : consonants)[i / 2];
                if (t.back() == 'U') t.back() = 'u';
            }
            if (not s.count(t)) {
                cout << t << endl;
                return 0;
            }
        } while (next_permutation(consonants.begin(), consonants.end()));
    } while (next_permutation(vowels.begin(), vowels.end()));
    cout << "NO" << endl;
    return 0;
}
0