結果

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

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 32 ms
10,624 KB
testcase_01 AC 33 ms
10,624 KB
testcase_02 AC 31 ms
10,752 KB
testcase_03 AC 30 ms
10,624 KB
testcase_04 AC 30 ms
10,752 KB
testcase_05 AC 30 ms
10,624 KB
testcase_06 AC 30 ms
10,624 KB
testcase_07 AC 30 ms
10,624 KB
testcase_08 AC 31 ms
10,752 KB
testcase_09 AC 30 ms
10,752 KB
testcase_10 AC 31 ms
10,752 KB
testcase_11 AC 33 ms
10,752 KB
testcase_12 AC 32 ms
10,752 KB
testcase_13 AC 31 ms
10,752 KB
testcase_14 AC 31 ms
10,624 KB
testcase_15 AC 31 ms
10,752 KB
testcase_16 AC 115 ms
10,880 KB
testcase_17 AC 205 ms
11,008 KB
testcase_18 AC 149 ms
10,880 KB
testcase_19 AC 542 ms
11,520 KB
testcase_20 AC 578 ms
11,648 KB
testcase_21 AC 147 ms
11,520 KB
testcase_22 AC 1,090 ms
12,416 KB
testcase_23 AC 1,656 ms
12,416 KB
testcase_24 AC 838 ms
12,544 KB
testcase_25 AC 388 ms
12,416 KB
testcase_26 AC 262 ms
12,408 KB
testcase_27 AC 33 ms
10,752 KB
testcase_28 AC 58 ms
10,880 KB
testcase_29 AC 146 ms
11,904 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:
    for (k0, k1, k2, k3), val in list(dp.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