結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2022-09-07 00:16:57
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,724 ms / 5,000 ms
コード長 1,227 bytes
コンパイル時間 347 ms
コンパイル使用メモリ 82,368 KB
実行使用メモリ 77,288 KB
最終ジャッジ日時 2024-12-21 23:22:26
合計ジャッジ時間 23,129 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,660 KB
testcase_01 AC 39 ms
52,680 KB
testcase_02 AC 39 ms
52,940 KB
testcase_03 AC 38 ms
53,236 KB
testcase_04 AC 37 ms
53,072 KB
testcase_05 AC 3,724 ms
68,816 KB
testcase_06 AC 49 ms
62,072 KB
testcase_07 AC 3,101 ms
76,748 KB
testcase_08 AC 1,994 ms
77,096 KB
testcase_09 AC 3,112 ms
77,288 KB
testcase_10 AC 38 ms
52,632 KB
testcase_11 AC 37 ms
53,296 KB
testcase_12 AC 39 ms
53,104 KB
testcase_13 AC 38 ms
53,272 KB
testcase_14 AC 38 ms
53,336 KB
testcase_15 AC 2,354 ms
76,588 KB
testcase_16 AC 727 ms
76,732 KB
testcase_17 AC 436 ms
76,468 KB
testcase_18 AC 2,489 ms
77,036 KB
testcase_19 AC 202 ms
76,956 KB
testcase_20 AC 1,893 ms
77,092 KB
testcase_21 AC 38 ms
52,864 KB
testcase_22 AC 208 ms
76,548 KB
testcase_23 AC 78 ms
76,252 KB
testcase_24 AC 73 ms
73,256 KB
testcase_25 AC 72 ms
73,144 KB
testcase_26 AC 99 ms
76,388 KB
testcase_27 AC 168 ms
76,104 KB
testcase_28 AC 92 ms
76,376 KB
testcase_29 AC 166 ms
76,300 KB
testcase_30 AC 121 ms
76,504 KB
testcase_31 AC 40 ms
54,296 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N, A, B = map(int, input().split())
S = str(input())
rle = []
concnt = 0
now_idx = 0
while True:
    if now_idx >= N - 2:
        if concnt >= 1:
            rle.append(concnt)
        break
    elif S[now_idx:(now_idx + 3)] == 'con':
        now_idx += 3
        concnt += 1
    else:
        now_idx += 1
        if concnt >= 1:
            rle.append(concnt)
        concnt = 0

INF = N // 3 + 1
MAX_J = (N + 3) // 6 + 1
divA = [0 for _ in range(INF)]
divB = [0 for _ in range(INF)]
for i in range(INF):
    divA[i] = i // A
    divB[i] = i // B
dp1 = [-INF for _ in range(MAX_J)]
dp2 = [-INF for _ in range(MAX_J)]
dp1[0] = 0
now = 0
for i in range(len(rle)):
    now += divA[rle[i]]
    for j in range(now + 1):
        for k in range(divA[rle[i]] + 1):
            if j + k >= MAX_J:
                continue
            val = divB[rle[i] - A * k]
            if dp2[j + k] < dp1[j] + val:
                dp2[j + k] = dp1[j] + val
    for j in range(now + 1):
        if j >= MAX_J:
            continue
        dp1[j] = dp2[j]
        dp2[j] = -INF
    #print(dp1[0:5])
ans = 0
for j in range(MAX_J):
    if dp1[j] >= j - 1:
        ans = max(ans, 2 * j - 1)
    if dp1[j] >= j:
        ans = max(ans, 2 * j)
print(ans)
0