結果

問題 No.2076 Concon Substrings (ConVersion)
ユーザー とりゐとりゐ
提出日時 2022-09-16 22:38:26
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 3,581 ms / 5,000 ms
コード長 646 bytes
コンパイル時間 323 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 260,480 KB
最終ジャッジ日時 2024-12-21 23:28:15
合計ジャッジ時間 19,606 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
52,352 KB
testcase_01 AC 40 ms
51,968 KB
testcase_02 AC 41 ms
51,712 KB
testcase_03 AC 40 ms
52,352 KB
testcase_04 AC 40 ms
52,352 KB
testcase_05 AC 61 ms
72,192 KB
testcase_06 AC 54 ms
69,376 KB
testcase_07 AC 3,581 ms
258,388 KB
testcase_08 AC 2,540 ms
258,816 KB
testcase_09 AC 3,177 ms
258,520 KB
testcase_10 AC 40 ms
52,096 KB
testcase_11 AC 40 ms
51,968 KB
testcase_12 AC 40 ms
51,712 KB
testcase_13 AC 39 ms
52,096 KB
testcase_14 AC 41 ms
52,096 KB
testcase_15 AC 681 ms
209,356 KB
testcase_16 AC 917 ms
258,816 KB
testcase_17 AC 517 ms
260,224 KB
testcase_18 AC 1,945 ms
260,224 KB
testcase_19 AC 513 ms
258,432 KB
testcase_20 AC 1,245 ms
260,096 KB
testcase_21 AC 40 ms
51,840 KB
testcase_22 AC 351 ms
260,480 KB
testcase_23 AC 189 ms
224,256 KB
testcase_24 AC 187 ms
176,760 KB
testcase_25 AC 206 ms
161,280 KB
testcase_26 AC 93 ms
76,672 KB
testcase_27 AC 166 ms
76,160 KB
testcase_28 AC 258 ms
260,480 KB
testcase_29 AC 298 ms
168,576 KB
testcase_30 AC 400 ms
258,560 KB
testcase_31 AC 53 ms
62,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n,a,b=map(int,input().split())
s=input()

c=[]
for i in s:
  c.append(i)
  if len(c)>=3 and c[-3]+c[-2]+c[-1]=='con':
    c.pop()
    c.pop()
    c.pop()
    c.append('!')

c.append('a')
d=[]
tmp=0
for i in c:
  if i=='!':
    tmp+=1
  else:
    if tmp!=0:
      d.append(tmp)
    tmp=0

m=n
dp=[-10**9]*m
dp[0]=0
mx=0
for i in d:
  ndp=dp.copy()
  tmp=0
  while True:
    c1=tmp
    c2=(i-a*tmp)//b
    if c2<0:
      break
    for j in range(mx+1):
      ndp[j+c1]=max(ndp[j+c1],dp[j]+c2)
    tmp+=1
  mx+=c1
  dp=ndp

ans=0
#print(dp)
for i in range(1,m):
  if dp[i]>=i-1:
    ans=max(2*i-1,ans)
  if dp[i]>=i:
    ans=max(ans,2*i)

print(ans)
0