結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | imulan |
提出日時 | 2016-12-10 19:05:12 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
AC
|
実行時間 | 157 ms / 1,000 ms |
コード長 | 1,326 bytes |
コンパイル時間 | 1,736 ms |
コンパイル使用メモリ | 176,544 KB |
実行使用メモリ | 13,440 KB |
最終ジャッジ日時 | 2024-11-29 02:00:56 |
合計ジャッジ時間 | 5,551 ms |
ジャッジサーバーID (参考情報) |
judge2 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 87 ms
13,056 KB |
testcase_01 | AC | 52 ms
9,728 KB |
testcase_02 | AC | 23 ms
6,820 KB |
testcase_03 | AC | 58 ms
10,368 KB |
testcase_04 | AC | 157 ms
13,440 KB |
testcase_05 | AC | 114 ms
13,440 KB |
testcase_06 | AC | 107 ms
13,440 KB |
testcase_07 | AC | 102 ms
13,440 KB |
testcase_08 | AC | 96 ms
13,440 KB |
testcase_09 | AC | 2 ms
6,820 KB |
testcase_10 | AC | 2 ms
6,820 KB |
testcase_11 | AC | 2 ms
6,820 KB |
testcase_12 | AC | 53 ms
9,728 KB |
testcase_13 | AC | 96 ms
13,312 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; #define rep(i,n) for(int (i)=0;(i)<(int)(n);++(i)) #define each(itr,c) for(__typeof(c.begin()) itr=c.begin(); itr!=c.end(); ++itr) #define all(x) (x).begin(),(x).end() #define pb push_back #define fi first #define se second string solve() { int n; set<string> s; cin >>n; rep(i,n) { string used; cin >>used; s.insert(used); } if(n>=129600) return "NO"; string x="bgmnr", y="aaeiuu"; do{ rep(i,6) { string z=""; char sel=y[i]; rep(j,6)if(j!=i) z+=y[j]; do{ // sel として選んだ母音を入れる位置 rep(j,6) { string name=""; if(j==0) name+=sel; rep(k,5) { name+=x[k]; name+=z[k]; if(j==k+1) name+=sel; } if(s.find(name) == s.end()) return name; } }while(next_permutation(all(z))); } }while(next_permutation(all(x))); return "NO"; } int main() { cin.tie(0);ios::sync_with_stdio(false); cout << solve() << '\n'; return 0; }