結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー 👑 AngrySadEightAngrySadEight
提出日時 2022-09-07 00:15:22
言語 PyPy3
(7.3.15)
結果
RE  
実行時間 -
コード長 1,183 bytes
コンパイル時間 200 ms
コンパイル使用メモリ 82,232 KB
実行使用メモリ 78,208 KB
最終ジャッジ日時 2024-11-22 00:18:43
合計ジャッジ時間 14,184 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
51,840 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 42 ms
51,968 KB
testcase_03 AC 41 ms
52,224 KB
testcase_04 AC 37 ms
51,968 KB
testcase_05 RE -
testcase_06 AC 48 ms
61,824 KB
testcase_07 RE -
testcase_08 RE -
testcase_09 RE -
testcase_10 AC 38 ms
52,096 KB
testcase_11 AC 36 ms
52,608 KB
testcase_12 AC 36 ms
52,352 KB
testcase_13 AC 36 ms
52,352 KB
testcase_14 AC 37 ms
52,352 KB
testcase_15 RE -
testcase_16 AC 703 ms
76,652 KB
testcase_17 AC 422 ms
76,488 KB
testcase_18 RE -
testcase_19 AC 199 ms
76,424 KB
testcase_20 RE -
testcase_21 AC 38 ms
52,096 KB
testcase_22 AC 201 ms
76,384 KB
testcase_23 AC 77 ms
76,160 KB
testcase_24 AC 69 ms
72,448 KB
testcase_25 AC 70 ms
72,320 KB
testcase_26 AC 95 ms
76,160 KB
testcase_27 RE -
testcase_28 AC 88 ms
76,260 KB
testcase_29 AC 159 ms
76,288 KB
testcase_30 AC 116 ms
76,416 KB
testcase_31 AC 40 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):
        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