結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー tnakao0123tnakao0123
提出日時 2024-07-23 11:02:48
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 2,075 ms / 5,000 ms
コード長 1,442 bytes
コンパイル時間 517 ms
コンパイル使用メモリ 45,952 KB
実行使用メモリ 6,944 KB
最終ジャッジ日時 2024-07-23 11:03:08
合計ジャッジ時間 14,416 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,940 KB
testcase_03 AC 1 ms
6,944 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 1,664 ms
6,944 KB
testcase_06 AC 154 ms
6,940 KB
testcase_07 AC 1,170 ms
6,944 KB
testcase_08 AC 956 ms
6,940 KB
testcase_09 AC 1,159 ms
6,940 KB
testcase_10 AC 2 ms
6,944 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,944 KB
testcase_13 AC 2 ms
6,944 KB
testcase_14 AC 2 ms
6,944 KB
testcase_15 AC 2,075 ms
6,940 KB
testcase_16 AC 690 ms
6,940 KB
testcase_17 AC 609 ms
6,940 KB
testcase_18 AC 1,309 ms
6,940 KB
testcase_19 AC 313 ms
6,940 KB
testcase_20 AC 1,828 ms
6,944 KB
testcase_21 AC 2 ms
6,944 KB
testcase_22 AC 215 ms
6,940 KB
testcase_23 AC 32 ms
6,944 KB
testcase_24 AC 46 ms
6,940 KB
testcase_25 AC 62 ms
6,940 KB
testcase_26 AC 43 ms
6,944 KB
testcase_27 AC 68 ms
6,944 KB
testcase_28 AC 73 ms
6,944 KB
testcase_29 AC 189 ms
6,940 KB
testcase_30 AC 170 ms
6,940 KB
testcase_31 AC 3 ms
6,944 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

/* -*- coding: utf-8 -*-
 *
 * 2076.cc:  No.2076 Concon Substrings (ConVersion) - yukicoder
 */

#include<cstdio>
#include<algorithm>

using namespace std;

/* constant */

const int MAX_N = 50000;
const int MAX_M = MAX_N / 3;
const int MAX_K = MAX_N / 3;

/* typedef */

/* global variables */

char s[MAX_N + 4];
int ls[MAX_M], dp[2][MAX_K + 1];

/* subroutines */

inline void setmax(int &a, int b) { if (a < b) a = b; }

/* main */

int main() {
  int n, a, b;
  scanf("%d%d%d%s", &n, &a, &b, s);
  int k = n / 3;
  
  int m = 0;
  for (int i = 0; i + 2 < n;) {
    while (i + 2 < n && s[i] != 'c') i++;
    if (i + 2 >= n) break;
    
    int j = i;
    while (i + 2 < n &&
	   s[i] == 'c' && s[i + 1] == 'o' && s[i + 2] == 'n') i += 3;
    int a = (i - j) / 3;
    if (a > 0) ls[m++] = a;
    else i++;
  }
  //for (int i = 0; i < m; i++) printf(" %d", ls[i]); putchar('\n');

  fill(dp[0], dp[0] + k + 1, -1);
  dp[0][0] = 0;
  int cur = 0, nxt = 1;

  for (int i = 0; i < k; i++) {
    fill(dp[nxt], dp[nxt] + k + 1, -1);
    for (int j = 0; j <= k; j++)
      if (dp[cur][j] >= 0) {
	for (int j1 = 0; j + j1 <= k && j1 * a <= ls[i]; j1++)
	  setmax(dp[nxt][j + j1], dp[cur][j] + (ls[i] - j1 * a) / b);
      }
    swap(cur, nxt);
  }

  int maxc = 0;
  for (int j = 1; j <= k; j++) {
    if (dp[cur][j] >= j) setmax(maxc, j * 2);
    else if (dp[cur][j] >= j - 1) setmax(maxc, j * 2 - 1);
  }

  printf("%d\n", maxc);

  return 0;
}
0