結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | cormoran |
提出日時 | 2016-01-14 18:10:20 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 266 ms / 1,000 ms |
コード長 | 2,218 bytes |
コンパイル時間 | 713 ms |
コンパイル使用メモリ | 86,948 KB |
実行使用メモリ | 13,440 KB |
最終ジャッジ日時 | 2024-09-19 19:04:39 |
合計ジャッジ時間 | 4,205 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 80 ms
13,056 KB |
testcase_01 | AC | 48 ms
9,472 KB |
testcase_02 | AC | 23 ms
6,656 KB |
testcase_03 | AC | 53 ms
10,368 KB |
testcase_04 | AC | 240 ms
13,440 KB |
testcase_05 | AC | 218 ms
13,440 KB |
testcase_06 | AC | 198 ms
13,440 KB |
testcase_07 | AC | 266 ms
13,440 KB |
testcase_08 | AC | 264 ms
13,440 KB |
testcase_09 | AC | 1 ms
5,376 KB |
testcase_10 | AC | 1 ms
5,376 KB |
testcase_11 | AC | 2 ms
5,376 KB |
testcase_12 | AC | 49 ms
9,728 KB |
testcase_13 | AC | 92 ms
13,312 KB |
ソースコード
#include<iostream> #include<vector> #include<cassert> #include<string> #include<algorithm> #include<cstdio> #include<cstdlib> #include<cmath> #include<stack> #include<queue> #include<set> #include<map> #include<tuple> #include<unistd.h> using namespace std; typedef pair<int,int> pii; typedef long long ll; typedef ll int__; #define rep(i,j) for(int__ i=0;i<(int__)(j);i++) #define repeat(i,j,k) for(int__ i=(j);i<(int__)(k);i++) #define all(v) v.begin(),v.end() template<typename T> ostream& operator << (ostream &os , const vector<T> &v){ rep(i,v.size()) os << v[i] << (i!=v.size()-1 ? " " : "\n"); return os; } template<typename T> istream& operator >> (istream &is , vector<T> &v){ rep(i,v.size()) is >> v[i]; return is; } #ifdef DEBUG void debug(){ cerr << endl; } #endif template<class F,class...R> void debug(const F &car,const R&... cdr){ #ifdef DEBUG cerr << car << " "; debug(cdr...); #endif } // 11 // inabameguru // i a a e u u : 6 // n m b g r : 5 // ni na ne nu const string MEGURU = "inabameguru"; const char vowel[] = {'a','i','u','e','o'}; bool is_vowel(char c){ rep(i,5) if(c == vowel[i]) return true; return false; } string ans = ""; set<string> S; bool make(string &s,unsigned int used,int left_vowel){ int left = MEGURU.size() - __builtin_popcount(used); if(left_vowel*2 < left) return false; if(left == 0){ if(is_vowel(s.back()) and not S.count(s)){ ans = s; return true; } return false; } rep(i,MEGURU.size()){ if(used & (1<<i)) continue; if(s.size() > 0 and not is_vowel(s.back()) and not is_vowel(MEGURU[i])) continue; s.push_back(MEGURU[i]); if( make( s, used | (1<<i) , left_vowel - (is_vowel(MEGURU[i])))){ return true; } s.pop_back(); } return false; } bool solve(){ int N; cin >> N; rep(i,N){ string s; cin >> s; S.insert(s); } string s = ""; if( make(s,0,6) ){ cout << ans <<endl; } else { cout << "NO" << endl; } return false; } int main() { ios::sync_with_stdio(false); while(solve()); return 0; }