結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,352 KB
testcase_01 AC 41 ms
52,480 KB
testcase_02 AC 41 ms
52,224 KB
testcase_03 AC 41 ms
52,352 KB
testcase_04 AC 41 ms
52,224 KB
testcase_05 AC 3,675 ms
68,992 KB
testcase_06 AC 52 ms
61,568 KB
testcase_07 AC 3,050 ms
76,944 KB
testcase_08 AC 1,972 ms
77,032 KB
testcase_09 AC 3,085 ms
77,280 KB
testcase_10 AC 41 ms
52,352 KB
testcase_11 AC 41 ms
52,480 KB
testcase_12 AC 41 ms
52,736 KB
testcase_13 AC 41 ms
52,736 KB
testcase_14 AC 41 ms
52,736 KB
testcase_15 AC 2,329 ms
76,544 KB
testcase_16 AC 721 ms
76,912 KB
testcase_17 AC 436 ms
76,672 KB
testcase_18 AC 2,462 ms
76,800 KB
testcase_19 AC 205 ms
76,544 KB
testcase_20 AC 1,873 ms
77,056 KB
testcase_21 AC 39 ms
52,736 KB
testcase_22 AC 208 ms
76,792 KB
testcase_23 AC 82 ms
76,416 KB
testcase_24 AC 73 ms
72,320 KB
testcase_25 AC 75 ms
72,320 KB
testcase_26 AC 101 ms
76,508 KB
testcase_27 AC 170 ms
76,536 KB
testcase_28 AC 95 ms
76,672 KB
testcase_29 AC 168 ms
76,412 KB
testcase_30 AC 123 ms
76,544 KB
testcase_31 AC 42 ms
53,120 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