結果

問題 No.291 黒い文字列
ユーザー rpy3cpprpy3cpp
提出日時 2015-10-17 09:06:13
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 1,362 ms / 2,000 ms
コード長 1,080 bytes
コンパイル時間 91 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 12,552 KB
最終ジャッジ日時 2024-07-22 07:56:38
合計ジャッジ時間 6,923 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 25 ms
10,752 KB
testcase_01 AC 27 ms
10,880 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 27 ms
10,752 KB
testcase_04 AC 26 ms
10,752 KB
testcase_05 AC 27 ms
10,752 KB
testcase_06 AC 29 ms
10,752 KB
testcase_07 AC 27 ms
10,752 KB
testcase_08 AC 29 ms
10,752 KB
testcase_09 AC 29 ms
10,752 KB
testcase_10 AC 29 ms
10,880 KB
testcase_11 AC 31 ms
10,752 KB
testcase_12 AC 28 ms
10,880 KB
testcase_13 AC 28 ms
10,880 KB
testcase_14 AC 28 ms
10,752 KB
testcase_15 AC 27 ms
10,880 KB
testcase_16 AC 100 ms
11,136 KB
testcase_17 AC 172 ms
11,136 KB
testcase_18 AC 124 ms
11,136 KB
testcase_19 AC 437 ms
11,676 KB
testcase_20 AC 482 ms
11,428 KB
testcase_21 AC 115 ms
11,520 KB
testcase_22 AC 925 ms
12,212 KB
testcase_23 AC 1,362 ms
12,440 KB
testcase_24 AC 700 ms
12,212 KB
testcase_25 AC 315 ms
12,552 KB
testcase_26 AC 214 ms
12,304 KB
testcase_27 AC 30 ms
10,880 KB
testcase_28 AC 48 ms
11,008 KB
testcase_29 AC 118 ms
12,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import collections
S = input()
lst = ['KUROI?'.index(c) for c in S if c in 'KUROI?']
m = len(lst) // 5
dp = collections.defaultdict(int)
dp[0,0,0,0] = 0
for c in lst:
    dp_c = dp.copy()
    for (k0, k1, k2, k3), val in dp_c.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(max(dp.values()))
0