結果

問題 No.291 黒い文字列
ユーザー rpy3cpprpy3cpp
提出日時 2015-10-17 08:48:54
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 840 ms / 2,000 ms
コード長 1,364 bytes
コンパイル時間 772 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 12,436 KB
最終ジャッジ日時 2024-07-22 07:54:45
合計ジャッジ時間 5,000 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 28 ms
10,752 KB
testcase_01 AC 28 ms
10,624 KB
testcase_02 AC 29 ms
10,752 KB
testcase_03 AC 29 ms
10,752 KB
testcase_04 AC 27 ms
10,624 KB
testcase_05 AC 29 ms
10,752 KB
testcase_06 AC 28 ms
10,752 KB
testcase_07 AC 30 ms
10,752 KB
testcase_08 AC 28 ms
10,752 KB
testcase_09 AC 30 ms
10,624 KB
testcase_10 AC 29 ms
10,752 KB
testcase_11 AC 32 ms
10,624 KB
testcase_12 AC 31 ms
10,752 KB
testcase_13 AC 30 ms
10,624 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 30 ms
10,752 KB
testcase_16 AC 74 ms
10,880 KB
testcase_17 AC 115 ms
11,136 KB
testcase_18 AC 89 ms
11,008 KB
testcase_19 AC 289 ms
11,392 KB
testcase_20 AC 318 ms
11,392 KB
testcase_21 AC 87 ms
11,520 KB
testcase_22 AC 583 ms
12,436 KB
testcase_23 AC 840 ms
12,352 KB
testcase_24 AC 438 ms
12,432 KB
testcase_25 AC 204 ms
12,308 KB
testcase_26 AC 142 ms
12,304 KB
testcase_27 AC 31 ms
10,752 KB
testcase_28 AC 42 ms
10,752 KB
testcase_29 AC 88 ms
12,092 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, m)
    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, m):
    dp_copy = {key: val for key, val in dp.items()}
    for (k0, k1, k2, k3), val in dp_copy.items():
        if (c == 4 or c == 5) and k3 > val and dp[k0, k1, k2, k3] <= val:
            dp[k0, k1, k2, k3] = val + 1
        if (c == 3 or c == 5) and 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 (c == 2 or c == 5) and 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 (c == 1 or c == 5) and 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 (c == 0 or c == 5) and m > 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