結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー chineristACchineristAC
提出日時 2022-09-16 22:19:07
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,097 bytes
コンパイル時間 340 ms
コンパイル使用メモリ 82,348 KB
実行使用メモリ 259,732 KB
最終ジャッジ日時 2024-06-01 13:27:25
合計ジャッジ時間 32,611 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 49 ms
56,524 KB
testcase_01 AC 49 ms
57,464 KB
testcase_02 AC 49 ms
57,236 KB
testcase_03 AC 47 ms
56,404 KB
testcase_04 AC 48 ms
56,508 KB
testcase_05 AC 61 ms
67,352 KB
testcase_06 AC 54 ms
64,492 KB
testcase_07 TLE -
testcase_08 AC 4,030 ms
259,408 KB
testcase_09 TLE -
testcase_10 AC 48 ms
57,120 KB
testcase_11 AC 47 ms
56,424 KB
testcase_12 AC 46 ms
56,392 KB
testcase_13 AC 49 ms
56,904 KB
testcase_14 AC 47 ms
55,960 KB
testcase_15 AC 1,292 ms
110,340 KB
testcase_16 AC 1,889 ms
213,852 KB
testcase_17 AC 919 ms
188,108 KB
testcase_18 AC 4,108 ms
239,664 KB
testcase_19 AC 1,033 ms
259,440 KB
testcase_20 AC 2,767 ms
169,396 KB
testcase_21 AC 48 ms
56,116 KB
testcase_22 AC 558 ms
188,060 KB
testcase_23 AC 164 ms
78,068 KB
testcase_24 AC 234 ms
79,644 KB
testcase_25 AC 433 ms
259,732 KB
testcase_26 AC 158 ms
78,200 KB
testcase_27 AC 183 ms
77,952 KB
testcase_28 AC 425 ms
259,356 KB
testcase_29 AC 576 ms
231,452 KB
testcase_30 AC 646 ms
259,052 KB
testcase_31 AC 60 ms
68,896 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys,random,bisect
from collections import deque,defaultdict,Counter
from heapq import heapify,heappop,heappush
from itertools import cycle, permutations
from math import log,gcd

input = lambda :sys.stdin.readline().rstrip()
mi = lambda :map(int,input().split())
li = lambda :list(mi())

N,X,Y = mi()
S = input()

A = []
i = 0
while i < N:
    if S[i:i+3]=="con":
        a = 1
        j = i+3
        while j+2 < len(S):
            if S[j:j+3]=="con":
                a += 1
                j += 3
            else:
                break
        A.append(a)
        i = j
    else:
        i += 1

res = 0
dp = [-1] * ((N//3)*2+10)
dp[0] = 0
for a in A:
    ndp = [-1] * ((N//3)*2)
    for s in range(-N//3,N//3+1):
        if dp[s] == -1:
            continue
        t = dp[s]
        for k in range(a//X+1):
            x = k
            y = (a-k*X)//Y
            ndp[s+x-y] = max(ndp[s+x-y],t+x+y)
    dp = ndp

for s in range(-N//3,2):
    if dp[s]!=-1:
        if s <= 0:
            tmp = dp[s] + s
        else:
            tmp = dp[s]
        res = max(res,tmp)

print(res)




0