結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー 👑 rin204rin204
提出日時 2022-09-16 22:39:14
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 679 bytes
コンパイル時間 481 ms
コンパイル使用メモリ 82,540 KB
実行使用メモリ 78,456 KB
最終ジャッジ日時 2024-06-01 13:41:38
合計ジャッジ時間 3,793 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
54,604 KB
testcase_01 AC 43 ms
53,720 KB
testcase_02 AC 41 ms
53,140 KB
testcase_03 AC 40 ms
52,948 KB
testcase_04 AC 41 ms
53,312 KB
testcase_05 AC 56 ms
64,376 KB
testcase_06 AC 46 ms
58,604 KB
testcase_07 AC 88 ms
76,928 KB
testcase_08 AC 88 ms
76,920 KB
testcase_09 AC 87 ms
76,972 KB
testcase_10 AC 41 ms
52,776 KB
testcase_11 AC 41 ms
52,860 KB
testcase_12 AC 41 ms
52,812 KB
testcase_13 AC 41 ms
53,252 KB
testcase_14 AC 41 ms
53,500 KB
testcase_15 AC 82 ms
76,264 KB
testcase_16 AC 121 ms
77,252 KB
testcase_17 AC 114 ms
76,660 KB
testcase_18 AC 157 ms
78,456 KB
testcase_19 WA -
testcase_20 AC 147 ms
77,808 KB
testcase_21 AC 42 ms
52,748 KB
testcase_22 AC 115 ms
76,976 KB
testcase_23 AC 80 ms
75,216 KB
testcase_24 AC 74 ms
72,528 KB
testcase_25 AC 85 ms
76,456 KB
testcase_26 AC 90 ms
76,384 KB
testcase_27 AC 106 ms
76,612 KB
testcase_28 WA -
testcase_29 AC 106 ms
76,784 KB
testcase_30 AC 103 ms
76,588 KB
testcase_31 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

n, a, b = map(int, input().split())
S = input()
S = S.replace("con", "*")
lst = []
row = 0
for s in S:
    if s == "*":
        row += 1
    else:
        if row != 0:
            lst.append(row)
        row = 0
if row != 0:
    lst.append(row)
lst.sort()
tot = sum(lst)

aa = 0
bb = 0
C = []
for l in lst:
    bb += l // b
    C.append((-(l % b), l))

heapify(C)

def f(a, b):
    if a > b:
        return 2 * b + 1
    else:
        return 2 * a

ans = f(aa, bb)

while C:

    _, d = heappop(C)
    if d < a:
        continue
    bb -= d // b
    d -= a
    aa += 1
    bb += d // b
    heappush(C, (-(d % b), d))
    ans = max(ans, f(aa, bb))

print(ans)
0