結果

問題 No.291 黒い文字列
ユーザー rpy3cpprpy3cpp
提出日時 2015-10-17 03:16:25
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
WA  
実行時間 -
コード長 2,453 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 13,056 KB
実行使用メモリ 12,928 KB
最終ジャッジ日時 2024-07-22 07:48:57
合計ジャッジ時間 5,659 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 30 ms
10,880 KB
testcase_01 AC 30 ms
11,008 KB
testcase_02 AC 30 ms
11,008 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 28 ms
10,752 KB
testcase_05 AC 31 ms
10,880 KB
testcase_06 AC 30 ms
11,008 KB
testcase_07 AC 28 ms
11,008 KB
testcase_08 AC 32 ms
10,880 KB
testcase_09 AC 30 ms
10,880 KB
testcase_10 AC 31 ms
10,880 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 28 ms
10,880 KB
testcase_15 AC 31 ms
10,880 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 AC 66 ms
11,776 KB
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 AC 152 ms
12,672 KB
testcase_26 AC 112 ms
12,800 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 39 ms
11,008 KB
testcase_29 AC 68 ms
12,160 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections

target = 'KUROI'
S = input()

def solve(S):
    lst = preprocess(S)
    m = len(lst) // len(target)
    dp = collections.defaultdict(int)
    dp[0,0,0,0] = 0
    for c in lst:
        update_dp(dp, c)
    return max(dp.values())


def preprocess(S):
    candidates = target + '?'
    dic = {c: i for i, c in enumerate(candidates)}
    return [dic[c] for c in S if c in dic]


def update_dp(dp, c):
    if c == 0:
        update_dp0(dp)
    elif c == 1:
        update_dp1(dp)
    elif c == 2:
        update_dp2(dp)
    elif c == 3:
        update_dp3(dp)
    elif c == 4:
        update_dp4(dp)
    else:
        update_dp5(dp)


def update_dp5(dp):
    for (k0, k1, k2, k3), val in list(dp.items()):
        if k3 > val:
            dp[k0, k1, k2, k3] += 1
        if k2 > k3:
            new_key = (k0, k1, k2, k3 + 1)
            if (new_key not in dp) or dp[new_key] < val:
                dp[new_key] = val
        if k1 > k2:
            new_key = (k0, k1, k2 + 1, k3)
            if (new_key not in dp) or dp[new_key] < val:
                dp[new_key] = val
        if k0 > k1:
            new_key = (k0, k1 + 1, k2, k3)
            if (new_key not in dp) or dp[new_key] < val:
                dp[new_key] = val
        if 20 > k0:
            new_key = (k0 + 1, k1, k2, k3)
            if (new_key not in dp) or dp[new_key] < val:
                dp[new_key] = val
            

def update_dp4(dp):
    for (k0, k1, k2, k3), val in list(dp.items()):
        if k3 > val:
            dp[k0, k1, k2, k3] += 1

def update_dp3(dp):
    for (k0, k1, k2, k3), val in list(dp.items()):
        if k2 > k3:
            new_key = (k0, k1, k2, k3 + 1)
            if (new_key not in dp) or dp[new_key] < val:
                dp[new_key] = val

def update_dp2(dp):
    for (k0, k1, k2, k3), val in list(dp.items()):
        if k1 > k2:
            new_key = (k0, k1, k2 + 1, k3)
            if (new_key not in dp) or dp[new_key] < val:
                dp[new_key] = val

def update_dp1(dp):
    for (k0, k1, k2, k3), val in list(dp.items()):
        if k0 > k1:
            new_key = (k0, k1+1, k2, k3)
            if (new_key not in dp) or dp[new_key] < val:
                dp[new_key] = val

def update_dp0(dp):
    for (k0, k1, k2, k3), val in list(dp.items()):
        if 20 > k0:
            new_key = (k0+1, k1, k2, k3)
            if (new_key not in dp) or dp[new_key] < val:
                dp[new_key] = val

print(solve(S))
0