結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | KKT89 |
提出日時 | 2020-07-14 11:49:20 |
言語 | C++17 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 852 ms / 1,000 ms |
コード長 | 1,164 bytes |
コンパイル時間 | 1,295 ms |
コンパイル使用メモリ | 121,580 KB |
実行使用メモリ | 35,328 KB |
最終ジャッジ日時 | 2024-11-17 04:29:55 |
合計ジャッジ時間 | 6,226 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge4 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 96 ms
13,184 KB |
testcase_01 | AC | 56 ms
9,728 KB |
testcase_02 | AC | 25 ms
6,528 KB |
testcase_03 | AC | 60 ms
10,496 KB |
testcase_04 | AC | 852 ms
35,328 KB |
testcase_05 | AC | 750 ms
31,488 KB |
testcase_06 | AC | 699 ms
29,952 KB |
testcase_07 | AC | 2 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 58 ms
9,728 KB |
testcase_13 | AC | 97 ms
13,312 KB |
ソースコード
#include <iostream> #include <vector> #include <algorithm> #include <map> #include <queue> #include <cstdio> #include <ctime> #include <assert.h> #include <chrono> #include <random> #include <numeric> #include <set> using namespace std; typedef long long int ll; using ull = unsigned long long; map<string,int> mp; vector<int> v(11); string s="inabameguru"; //set<string> st; bool ok(char c){ return (c=='a'||c=='i'||c=='u'||c=='e'||c=='o'); } void dfs(string t,int n){ if(n==11&&!mp[t]&&ok(t.back())){ //st.insert(t); cout << t << endl; exit(0); } for(int i=0;i<11;i++){ if(v[i])continue; if(t.size()&&!ok(t.back())&&!ok(s[i]))continue; v[i]=1; dfs(t+s[i],n+1); v[i]=0; } } int main(){ cin.tie(nullptr); ios::sync_with_stdio(false); //freopen("input.txt", "r", stdin); //freopen("output.txt", "w", stdout); string s="inabameguru"; int n; cin >> n; if(n>=129600){ printf("NO\n"); return 0; } while(n--){ string t; cin >> t; mp[t]=1; } dfs("",0); //printf("%d\n",st.size() ); printf("NO\n"); }