結果

問題 No.1542 ぽんぽんぽん ぽんぽんぽんぽん ぽんぽんぽん
ユーザー そすうぽよそすうぽよ
提出日時 2021-05-27 00:32:57
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 98 ms / 2,000 ms
コード長 1,601 bytes
コンパイル時間 2,131 ms
コンパイル使用メモリ 204,928 KB
実行使用メモリ 4,388 KB
最終ジャッジ日時 2023-08-05 21:24:02
合計ジャッジ時間 5,103 ms
ジャッジサーバーID
(参考情報)
judge15 / judge12
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,384 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 2 ms
4,380 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 2 ms
4,384 KB
testcase_05 AC 5 ms
4,384 KB
testcase_06 AC 32 ms
4,384 KB
testcase_07 AC 2 ms
4,380 KB
testcase_08 AC 72 ms
4,384 KB
testcase_09 AC 16 ms
4,380 KB
testcase_10 AC 87 ms
4,388 KB
testcase_11 AC 86 ms
4,384 KB
testcase_12 AC 1 ms
4,384 KB
testcase_13 AC 10 ms
4,384 KB
testcase_14 AC 44 ms
4,384 KB
testcase_15 AC 4 ms
4,380 KB
testcase_16 AC 26 ms
4,380 KB
testcase_17 AC 1 ms
4,380 KB
testcase_18 AC 3 ms
4,380 KB
testcase_19 AC 4 ms
4,380 KB
testcase_20 AC 84 ms
4,380 KB
testcase_21 AC 1 ms
4,384 KB
testcase_22 AC 32 ms
4,380 KB
testcase_23 AC 93 ms
4,384 KB
testcase_24 AC 88 ms
4,380 KB
testcase_25 AC 88 ms
4,384 KB
testcase_26 AC 91 ms
4,380 KB
testcase_27 AC 88 ms
4,380 KB
testcase_28 AC 90 ms
4,384 KB
testcase_29 AC 91 ms
4,380 KB
testcase_30 AC 86 ms
4,384 KB
testcase_31 AC 90 ms
4,380 KB
testcase_32 AC 98 ms
4,384 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
#include <variant>

#define rep2(i,k,n) for(i64 i=(i64)(k);i<(i64)(n);i++)
#define rep(i,n) rep2(i,0,n)
#define all(x) begin(x),end(x)
#ifdef ENV_LOCAL
#define dump if (1) cerr
#else
#define dump if (0) cerr
#endif

using namespace std;
using namespace std::string_literals;

using i32 = int32_t;
using i64 = int64_t;
using f64 = double;
using f80 = long double;
using vi32 = vector<i32>;
using vi64 = vector<i64>;

//using namespace harudake;

int main() {
  ios::sync_with_stdio(false);
  cin.tie(nullptr);
  i32 n;
  cin>>n;
  string s;
  cin>>s;
  // dp[length][first]
  vector dp(n+1, vi32(n));
  string pon = "pon";
  rep2(len,1,n+1) {
    rep(i,n) {
      if (i + len > n) break;
      rep2(j,i,i+len-1) {
        i32 len_left = j-i+1;
        if (s[i+len-1] != pon[dp[len_left][i] % 3]) continue;
        i32 len_innder = (i+len-2) - (j+1) + 1;
        i32 inner = dp[len_innder][j+1];
        inner -= inner % 3;
        dp[len][i] = max(dp[len][i], dp[len_left][i] + inner + 1);
      }
      if (s[i+len-1] == pon[dp[len-1][i]%3]) {
        dp[len][i] = max(dp[len][i], dp[len-1][i]+1);
      }
      dp[len][i] = max(dp[len][i], dp[len-1][i]);
      if (len >= 2) dp[len][i] = max(dp[len][i], dp[len-1][i+1]);
      dump<<dp[len][i]<<" ";
    }
    dump<<endl;
  }
  i32 mx = -1;
  rep2(i,1,n-1) {
    i32 left = dp[i][0];
    i32 right = dp[n-i][i];
    left -= left % 3;
    right -= right % 3;
    if (left && right) {
      mx = max(mx, (left + right) / 3);
    }
  }
  if (mx >= 2) {
    cout<<(mx - 2)<<endl;
  } else {
    cout<<-1<<endl;
  }
  return 0;
}
0