結果

問題 No.464 PPAP
ユーザー ei1333333ei1333333
提出日時 2018-11-22 00:45:40
言語 C++17(gcc12)
(gcc 12.3.0 + boost 1.87.0)
結果
AC  
実行時間 342 ms / 2,000 ms
コード長 643 bytes
コンパイル時間 2,301 ms
コンパイル使用メモリ 200,464 KB
実行使用メモリ 101,468 KB
最終ジャッジ日時 2024-12-24 16:10:05
合計ジャッジ時間 5,774 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
101,096 KB
testcase_01 AC 27 ms
101,120 KB
testcase_02 AC 29 ms
101,204 KB
testcase_03 AC 29 ms
101,096 KB
testcase_04 AC 28 ms
101,120 KB
testcase_05 AC 30 ms
101,120 KB
testcase_06 AC 29 ms
101,112 KB
testcase_07 AC 40 ms
101,320 KB
testcase_08 AC 40 ms
101,244 KB
testcase_09 AC 34 ms
101,140 KB
testcase_10 AC 338 ms
101,376 KB
testcase_11 AC 132 ms
101,188 KB
testcase_12 AC 342 ms
101,344 KB
testcase_13 AC 157 ms
101,380 KB
testcase_14 AC 318 ms
101,468 KB
testcase_15 AC 27 ms
101,120 KB
testcase_16 AC 27 ms
101,120 KB
testcase_17 AC 28 ms
100,992 KB
testcase_18 AC 27 ms
101,120 KB
testcase_19 AC 27 ms
101,212 KB
testcase_20 AC 29 ms
100,992 KB
testcase_21 AC 27 ms
101,120 KB
testcase_22 AC 27 ms
101,116 KB
testcase_23 AC 169 ms
101,248 KB
testcase_24 AC 302 ms
101,248 KB
testcase_25 AC 341 ms
101,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>

using namespace std;

using int64 = long long;


string S;
int g[5000][5000];
int64 dp[5][5001];

bool is_palindrome(int l, int r) {
  if(~g[l][r]) return g[l][r];
  if(l >= r) return true;
  if(S[l] != S[r]) return false;
  return g[l][r] = is_palindrome(l + 1, r - 1);
}

int main() {
  cin >> S;
  memset(g, -1, sizeof(g));
  int N = (int) S.size();
  dp[0][0] = 1;
  for(int i = 1; i <= 4; i++) {
    for(int j = 0; j < N; j++) {
      for(int k = j + 1; k <= N; k++) {
        if(i == 3 || is_palindrome(j, k - 1)) {
          dp[i][k] += dp[i - 1][j];
        }
      }
    }
  }
  cout << dp[4][N] << endl;
}

0