結果
問題 | No.599 回文かい |
ユーザー | ukohank517 |
提出日時 | 2017-11-25 00:20:12 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,869 bytes |
コンパイル時間 | 904 ms |
コンパイル使用メモリ | 100,980 KB |
実行使用メモリ | 10,752 KB |
最終ジャッジ日時 | 2024-05-05 11:53:55 |
合計ジャッジ時間 | 7,133 ms |
ジャッジサーバーID (参考情報) |
judge5 / judge2 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | WA | - |
testcase_02 | WA | - |
testcase_03 | WA | - |
testcase_04 | WA | - |
testcase_05 | WA | - |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | WA | - |
testcase_09 | WA | - |
testcase_10 | WA | - |
testcase_11 | WA | - |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | TLE | - |
testcase_15 | -- | - |
testcase_16 | -- | - |
testcase_17 | -- | - |
testcase_18 | -- | - |
testcase_19 | -- | - |
testcase_20 | -- | - |
evil_0.txt | -- | - |
ソースコード
#include <iostream> #include <iomanip> #include <vector> #include <algorithm> #include <cstring> #include <map> #include <queue> #include <cmath> #include <complex> // complex<double> a(1.2 , 2.3);// real(): 1.2, imag()2.3 using namespace std; #define MOD 1000000007 #define ll long long #define ld long double #define FOR(i,a,b) for(ll i=(ll)a;i<(ll)b;i++) #define rep(i,n) FOR(i,0,n) #define pb push_back #define mp make_pair #define all(a) a.begin(),a.end() #define rall(a) a.rbegin(),a.rend() #define rmsame(a) sort(all(a)),a.erase(unique(all(a)), a.end()) #define rmvector(a,b) rep(i,a.size())rep(j,b.size())if(a[i]==b[j]){a.erase(a.begin()+i);i--;break;} template<typename X> bool exist(vector<X> vec, X item){return find(all(vec), item)!=vec.end();} vector<string> ans; ll dp[10010]; void solve(string str){ if(str=="")return ; for(int i = 1;i<=str.size()/2;i++){ string a = str.substr(0,i); string b = str.substr(str.size()-i,i); if(a==b){ ans.pb(a); solve(str.substr(i,str.size()-i-i)); return; } } ans.pb(str); ans.pb(""); } int main(){ cin.tie(0); ios::sync_with_stdio(false); string S; cin >> S; solve(S); if(ans[ans.size()-1]==""){ ans.erase(ans.begin() + ans.size()-1); ll s = ans.size()-2; for(;s>=0;s--) ans.pb(ans[s]); } else{ ll s = ans.size()-1; for(;s>=0;s--) ans.pb(ans[s]); } ll result = ans.size()/2 + ans.size()%2; ll index = ans.size()/2; dp[0] = 1; for(ll i = 1; i<= ans.size()-1-index;i++){ for(ll m = index+1; m<= index+i;m++){ for(ll k = index;k<=m;k++){ string a = "", b= ""; for(ll n = k; n<= m;n++) a+= ans[n]; for(ll n = m; n>= k;n--) b+= ans[n]; if(a==b)dp[i]+=(dp[m-k-1]); } } } cout << dp[result-1] << endl; //cout << fixed << setprecision(16) << ans << endl; return 0; }