結果

問題 No.291 黒い文字列
ユーザー maspymaspy
提出日時 2020-04-10 13:39:28
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 655 ms / 2,000 ms
コード長 759 bytes
コンパイル時間 85 ms
コンパイル使用メモリ 12,800 KB
実行使用メモリ 45,072 KB
最終ジャッジ日時 2024-09-15 00:01:40
合計ジャッジ時間 18,536 ms
ジャッジサーバーID
(参考情報)
judge6 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 519 ms
44,384 KB
testcase_01 AC 517 ms
44,632 KB
testcase_02 AC 527 ms
44,940 KB
testcase_03 AC 522 ms
44,936 KB
testcase_04 AC 522 ms
44,496 KB
testcase_05 AC 523 ms
44,760 KB
testcase_06 AC 531 ms
44,888 KB
testcase_07 AC 524 ms
44,560 KB
testcase_08 AC 540 ms
44,800 KB
testcase_09 AC 534 ms
44,560 KB
testcase_10 AC 532 ms
44,672 KB
testcase_11 AC 555 ms
44,564 KB
testcase_12 AC 545 ms
44,924 KB
testcase_13 AC 525 ms
44,760 KB
testcase_14 AC 531 ms
45,064 KB
testcase_15 AC 528 ms
44,560 KB
testcase_16 AC 578 ms
44,556 KB
testcase_17 AC 594 ms
44,560 KB
testcase_18 AC 588 ms
44,800 KB
testcase_19 AC 616 ms
44,944 KB
testcase_20 AC 625 ms
45,072 KB
testcase_21 AC 565 ms
44,948 KB
testcase_22 AC 600 ms
44,548 KB
testcase_23 AC 655 ms
44,808 KB
testcase_24 AC 595 ms
44,936 KB
testcase_25 AC 554 ms
44,936 KB
testcase_26 AC 548 ms
44,804 KB
testcase_27 AC 534 ms
44,884 KB
testcase_28 AC 539 ms
44,676 KB
testcase_29 AC 549 ms
44,800 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
read = sys.stdin.buffer.read
readline = sys.stdin.buffer.readline
readlines = sys.stdin.buffer.readlines
import numpy as np

S = read().rstrip().decode()
dp = np.full((21, 21, 21, 21), -100, np.int32)
dp[0, 0, 0, 0] = 0

for x in S:
    newdp = dp.copy()
    if x in 'K?':
        np.maximum(newdp[1:], dp[:-1], out=newdp[1:])
    if x in 'U?':
        np.maximum(newdp[:-1, 1:], dp[1:, :-1], out=newdp[:-1, 1:])
    if x in 'R?':
        np.maximum(newdp[:, :-1, 1:], dp[:, 1:, :-1], out=newdp[:, :-1, 1:])
    if x in 'O?':
        np.maximum(newdp[:, :, :-1, 1:], dp[:, :, 1:, :-1], out=newdp[:, :, :-1, 1:])
    if x in 'I?':
        np.maximum(newdp[:, :, :, :-1], dp[:, :, :, 1:] + 1, out=newdp[:, :, :, :-1])
    dp = newdp

print(dp.max())
0