結果

問題 No.161 制限ジャンケン
ユーザー rlangevinrlangevin
提出日時 2023-01-15 16:05:06
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 186 ms / 5,000 ms
コード長 992 bytes
コンパイル時間 508 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 99,072 KB
最終ジャッジ日時 2024-06-08 18:56:48
合計ジャッジ時間 3,368 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 130 ms
96,000 KB
testcase_01 AC 46 ms
61,440 KB
testcase_02 AC 43 ms
62,464 KB
testcase_03 AC 51 ms
73,088 KB
testcase_04 AC 38 ms
54,528 KB
testcase_05 AC 37 ms
55,936 KB
testcase_06 AC 153 ms
98,504 KB
testcase_07 AC 74 ms
82,180 KB
testcase_08 AC 186 ms
99,072 KB
testcase_09 AC 70 ms
77,952 KB
testcase_10 AC 108 ms
85,760 KB
testcase_11 AC 103 ms
86,528 KB
testcase_12 AC 106 ms
84,324 KB
testcase_13 AC 163 ms
97,408 KB
testcase_14 AC 121 ms
88,064 KB
testcase_15 AC 133 ms
91,220 KB
testcase_16 AC 111 ms
86,592 KB
testcase_17 AC 108 ms
86,860 KB
testcase_18 AC 104 ms
84,236 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

G, C, P = map(int, input().split())
S = list(input())
N = len(S)

inf = 10 ** 18
pre = [[-inf] * 305 for i in range(305)]
pre[0][0] = 0
for i in range(N):
    dp = [[-inf] * 305 for i in range(305)]
    for g in range(G + 1):
        for c in range(C + 1):
            p = i - g - c
            if p < 0 or P < p:
                continue
            if S[i] == "G":
                dp[g + 1][c] = max(dp[g + 1][c], pre[g][c] + 1)
                dp[g][c + 1] = max(dp[g][c + 1], pre[g][c])
                dp[g][c] = max(dp[g][c], pre[g][c] + 3)
            elif S[i] == "C":
                dp[g + 1][c] = max(dp[g + 1][c], pre[g][c] + 3)
                dp[g][c + 1] = max(dp[g][c + 1], pre[g][c] + 1)
                dp[g][c] = max(dp[g][c], pre[g][c])
            else:
                dp[g + 1][c] = max(dp[g + 1][c], pre[g][c])
                dp[g][c + 1] = max(dp[g][c + 1], pre[g][c] + 3)
                dp[g][c] = max(dp[g][c], pre[g][c] + 1)
    dp, pre= pre, dp
print(pre[G][C])
0