結果
問題 | No.233 めぐるはめぐる (3) |
ユーザー | どらら |
提出日時 | 2015-06-27 00:12:17 |
言語 | C++11 (gcc 11.4.0) |
結果 |
AC
|
実行時間 | 269 ms / 1,000 ms |
コード長 | 2,425 bytes |
コンパイル時間 | 937 ms |
コンパイル使用メモリ | 91,932 KB |
実行使用メモリ | 13,440 KB |
最終ジャッジ日時 | 2024-07-07 19:30:22 |
合計ジャッジ時間 | 4,989 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 106 ms
12,928 KB |
testcase_01 | AC | 60 ms
9,600 KB |
testcase_02 | AC | 25 ms
6,528 KB |
testcase_03 | AC | 67 ms
10,368 KB |
testcase_04 | AC | 235 ms
13,312 KB |
testcase_05 | AC | 218 ms
13,312 KB |
testcase_06 | AC | 208 ms
13,440 KB |
testcase_07 | AC | 269 ms
13,312 KB |
testcase_08 | AC | 267 ms
13,440 KB |
testcase_09 | AC | 2 ms
5,376 KB |
testcase_10 | AC | 2 ms
5,376 KB |
testcase_11 | AC | 1 ms
5,376 KB |
testcase_12 | AC | 59 ms
9,728 KB |
testcase_13 | AC | 115 ms
13,184 KB |
ソースコード
#include <algorithm> #include <cstdio> #include <cstdlib> #include <cctype> #include <cmath> #include <iostream> #include <queue> #include <list> #include <map> #include <numeric> #include <set> #include <sstream> #include <string> #include <vector> using namespace std; #define REP(i,a,n) for(int i=(a); i<(int)(n); i++) #define rep(i,n) REP(i,0,n) #define FOR(it,c) for(__typeof((c).begin()) it=(c).begin(); it!=(c).end(); ++it) #define ALLOF(c) (c).begin(), (c).end() typedef long long ll; map<string,int> memo; bool finished; bool isvowel(char c){ if(c=='a' || c=='i' || c=='u' || c=='e' || c=='o') return true; return false; } void solve(string& str, string& dst, bool flg, int cnt){ if(finished) return; if(str == "***********"){ if(isvowel(dst[dst.size()-1]) && memo.count(dst) == 0){ cout << dst << endl; finished = true; } return; } vector<int> used(30, 0); if(dst == ""){ rep(i,str.length()){ char c = str[i]; str[i] = '*'; string tmp = dst+c; if(isvowel(c) && used[c-'a']==0){ used[c-'a'] = 1; solve(str, tmp, flg, 1); }else{ solve(str, tmp, flg, 0); } str[i] = c; } }else{ if(!isvowel(dst[dst.size()-1])){ rep(i,str.length()){ if(str[i] == '*') continue; if(!isvowel(str[i])) continue; char c = str[i]; str[i] = '*'; string tmp = dst+c; if(used[c-'a']==0){ used[c-'a'] = 1; solve(str, tmp, flg, 1); } str[i] = c; } }else if(cnt == 2 || flg){ rep(i,str.length()){ if(str[i] == '*') continue; if(isvowel(str[i])) continue; char c = str[i]; str[i] = '*'; string tmp = dst+c; solve(str, tmp, true, 0); str[i] = c; } }else{ rep(i,str.length()){ if(str[i] == '*') continue; char c = str[i]; str[i] = '*'; string tmp = dst+c; if(used[c-'a']==0){ used[c-'a'] = 1; solve(str, tmp, flg, cnt+1); } str[i] = c; } } } } int main(){ ios::sync_with_stdio(false); int N; cin >> N; rep(i,N){ string str; cin >> str; memo[str]++; } finished = false; string name = "inabameguru"; string dst = ""; solve(name, dst, false, 0); if(!finished){ cout << "NO" << endl; } return 0; }