結果

問題 No.291 黒い文字列
ユーザー mkawa2mkawa2
提出日時 2023-10-19 14:59:29
言語 PyPy3
(7.3.15)
結果
TLE  
実行時間 -
コード長 1,636 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,164 KB
実行使用メモリ 262,340 KB
最終ジャッジ日時 2024-09-19 11:07:33
合計ジャッジ時間 10,021 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 42 ms
55,060 KB
testcase_01 AC 37 ms
55,056 KB
testcase_02 AC 36 ms
55,300 KB
testcase_03 AC 41 ms
55,332 KB
testcase_04 AC 37 ms
54,996 KB
testcase_05 AC 39 ms
54,796 KB
testcase_06 AC 38 ms
54,348 KB
testcase_07 AC 37 ms
54,544 KB
testcase_08 AC 38 ms
54,608 KB
testcase_09 AC 38 ms
54,680 KB
testcase_10 AC 39 ms
54,692 KB
testcase_11 AC 83 ms
77,164 KB
testcase_12 AC 110 ms
77,624 KB
testcase_13 AC 38 ms
54,880 KB
testcase_14 AC 38 ms
54,996 KB
testcase_15 AC 39 ms
54,524 KB
testcase_16 AC 310 ms
86,556 KB
testcase_17 AC 417 ms
93,752 KB
testcase_18 AC 337 ms
88,504 KB
testcase_19 AC 928 ms
138,500 KB
testcase_20 AC 1,238 ms
186,656 KB
testcase_21 AC 40 ms
55,252 KB
testcase_22 AC 1,235 ms
172,760 KB
testcase_23 TLE -
testcase_24 AC 407 ms
93,824 KB
testcase_25 AC 42 ms
54,272 KB
testcase_26 AC 42 ms
54,656 KB
testcase_27 AC 43 ms
54,272 KB
testcase_28 AC 40 ms
54,912 KB
testcase_29 AC 41 ms
54,400 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

# sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
inf = -1-(-1 << 31)
# inf = -1-(-1 << 63)
# md = 10**9+7
md = 998244353

from collections import defaultdict

def pack(arr):
    s = 0
    for a in arr: s = s*21+a
    return s

def unpack(p):
    res = []
    for _ in range(4):
        p, r = divmod(p, 21)
        res.append(r)
    return res[::-1]

def update(c):
    kuro = pkuro[:]
    val = pre[p]
    if c == 0:
        kuro[0] = min(20, kuro[0]+1)
    elif c == 4:
        if kuro[c-1]:
            kuro[c-1] -= 1
            val += 1
    elif kuro[c-1]:
        kuro[c-1] -= 1
        kuro[c] = min(20, kuro[c]+1)
    q = pack(kuro)
    dp[q] = max(dp[q], val)

s = SI()
dp = defaultdict(int)
dp[0] = 0
for c in s:
    c = "KUROI?".find(c)
    if c == -1: continue
    pre, dp = dp, defaultdict(int)
    for p in pre:
        pkuro = unpack(p)
        if c == 5:
            for i in range(5): update(i)
        else:
            update(c)
    # pDB(pre, dp)

print(max(dp.values()))
0