結果

問題 No.291 黒い文字列
ユーザー しらっ亭しらっ亭
提出日時 2015-10-20 00:54:10
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,412 bytes
コンパイル時間 400 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 303,776 KB
最終ジャッジ日時 2024-07-22 10:52:52
合計ジャッジ時間 24,284 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 153 ms
91,400 KB
testcase_01 AC 133 ms
89,216 KB
testcase_02 AC 208 ms
100,560 KB
testcase_03 AC 203 ms
100,528 KB
testcase_04 AC 135 ms
89,088 KB
testcase_05 AC 134 ms
89,088 KB
testcase_06 AC 107 ms
84,752 KB
testcase_07 AC 147 ms
91,352 KB
testcase_08 AC 165 ms
94,152 KB
testcase_09 AC 119 ms
86,860 KB
testcase_10 WA -
testcase_11 AC 411 ms
132,096 KB
testcase_12 AC 405 ms
132,608 KB
testcase_13 AC 135 ms
89,088 KB
testcase_14 AC 273 ms
112,128 KB
testcase_15 AC 203 ms
100,568 KB
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 AC 1,280 ms
260,932 KB
testcase_20 AC 1,409 ms
262,864 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 1,737 ms
303,776 KB
testcase_24 WA -
testcase_25 AC 1,520 ms
302,580 KB
testcase_26 AC 1,530 ms
302,720 KB
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
権限があれば一括ダウンロードができます

ソースコード

diff #

from itertools import product


def solve():
    SS = input()
    S = [c for c in SS if c in 'KUROI?']
    L1 = len(S)
    L2 = L1 // 5 + 1

    dp = [[[[[-1 for o in range(21)] for r in range(21)] for u in range(21)] for k in range(21)] for x in range(L1 + 1)]
    # dp[x][k][u][r][o] = 次に見るのが x 文字目で、 kまで: k個、uまで: u個、rまで: r個、oまで: o個 のとき、i までできた数
    dp[0][0][0][0][0] = 0
    ma = 0

    for x, c in enumerate(S):
        dpx = dp[x]
        for k, u, r, o in product(range(21), repeat=4):
            if dpx[k][u][r][o] < 0:
                continue
            now = dpx[k][u][r][o]
            dpy = dp[x + 1]

            if (c == 'K' or c == '?') and k < 20:
                dpy[k + 1][u][r][o] = max(dpy[k + 1][u][r][o], now)
            if (c == 'U' or c == '?') and u < 20 and k:
                dpy[k - 1][u + 1][r][o] = max(dpy[k - 1][u + 1][r][o], now)
            if (c == 'R' or c == '?') and r < 20 and u:
                dpy[k][u - 1][r + 1][o] = max(dpy[k][u - 1][r + 1][o], now)
            if (c == 'O' or c == '?') and o < 20 and r:
                dpy[k][u][r - 1][o + 1] = max(dpy[k][u][r - 1][o + 1], now)
            if (c == 'I' or c == '?') and o:
                dpy[k][u][r][o - 1] = max(dpy[k][u][r][o - 1], now + 1)
                ma = max(ma, now + 1)
    print(ma)


if __name__ == '__main__':
    solve()
0