結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
101,120 KB
testcase_01 AC 42 ms
100,992 KB
testcase_02 AC 43 ms
100,956 KB
testcase_03 AC 43 ms
101,200 KB
testcase_04 AC 43 ms
101,056 KB
testcase_05 AC 42 ms
101,120 KB
testcase_06 AC 42 ms
101,144 KB
testcase_07 AC 51 ms
101,068 KB
testcase_08 AC 50 ms
101,224 KB
testcase_09 AC 48 ms
101,004 KB
testcase_10 AC 276 ms
101,200 KB
testcase_11 AC 121 ms
101,128 KB
testcase_12 AC 250 ms
101,220 KB
testcase_13 AC 151 ms
101,216 KB
testcase_14 AC 241 ms
101,368 KB
testcase_15 AC 45 ms
101,120 KB
testcase_16 AC 45 ms
101,092 KB
testcase_17 AC 44 ms
101,120 KB
testcase_18 AC 43 ms
101,120 KB
testcase_19 AC 44 ms
101,160 KB
testcase_20 AC 43 ms
101,120 KB
testcase_21 AC 43 ms
101,020 KB
testcase_22 AC 44 ms
101,048 KB
testcase_23 AC 163 ms
101,352 KB
testcase_24 AC 275 ms
101,248 KB
testcase_25 AC 307 ms
101,120 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