結果

問題 No.588 空白と回文
ユーザー beetbeet
提出日時 2018-07-27 15:27:48
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 13 ms / 2,000 ms
コード長 629 bytes
コンパイル時間 1,693 ms
コンパイル使用メモリ 167,168 KB
実行使用メモリ 13,252 KB
最終ジャッジ日時 2024-07-01 03:31:25
合計ジャッジ時間 2,813 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 5 ms
13,204 KB
testcase_01 AC 6 ms
13,088 KB
testcase_02 AC 5 ms
13,140 KB
testcase_03 AC 13 ms
13,232 KB
testcase_04 AC 5 ms
13,176 KB
testcase_05 AC 5 ms
13,096 KB
testcase_06 AC 6 ms
13,252 KB
testcase_07 AC 6 ms
12,936 KB
testcase_08 AC 5 ms
13,168 KB
testcase_09 AC 5 ms
13,116 KB
testcase_10 AC 6 ms
13,196 KB
testcase_11 AC 12 ms
13,096 KB
testcase_12 AC 13 ms
13,100 KB
testcase_13 AC 5 ms
13,068 KB
testcase_14 AC 6 ms
13,072 KB
testcase_15 AC 5 ms
13,208 KB
testcase_16 AC 6 ms
12,968 KB
testcase_17 AC 9 ms
13,132 KB
testcase_18 AC 5 ms
13,200 KB
testcase_19 AC 5 ms
13,048 KB
testcase_20 AC 11 ms
13,080 KB
testcase_21 AC 11 ms
12,952 KB
testcase_22 AC 12 ms
13,124 KB
testcase_23 AC 9 ms
13,108 KB
testcase_24 AC 6 ms
13,120 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>
using namespace std;
using Int = long long;

template<typename T1,typename T2> inline void chmin(T1 &a,T2 b){if(a>b) a=b;}
template<typename T1,typename T2> inline void chmax(T1 &a,T2 b){if(a<b) a=b;}

//INSERT ABOVE HERE
Int dp[1111][1111];
string s;
Int n;
// [l, r]
Int dfs(Int l,Int r){
  Int &res=dp[l][r];
  if(~res) return res;
  res=(s[l]==s[r])*(1+(l!=r));
  if(l+1<=r-1) res+=dfs(l+1,r-1);
  return res;
}

signed main(){
  cin>>s;
  n=s.size();
  Int ans=0;
  memset(dp,-1,sizeof(dp));
  for(Int i=0;i<n;i++)
    for(Int j=i;j<n;j++)
      chmax(ans,dfs(i,j));
  cout<<ans<<endl;
  return 0;
}
0