結果

問題 No.161 制限ジャンケン
ユーザー lloyzlloyz
提出日時 2023-06-11 23:16:36
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 223 ms / 5,000 ms
コード長 1,450 bytes
コンパイル時間 355 ms
コンパイル使用メモリ 82,432 KB
実行使用メモリ 86,676 KB
最終ジャッジ日時 2024-06-11 01:14:41
合計ジャッジ時間 3,402 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 113 ms
77,548 KB
testcase_01 AC 40 ms
53,888 KB
testcase_02 AC 40 ms
53,504 KB
testcase_03 AC 47 ms
54,656 KB
testcase_04 AC 48 ms
53,504 KB
testcase_05 AC 40 ms
54,016 KB
testcase_06 AC 178 ms
84,096 KB
testcase_07 AC 50 ms
62,592 KB
testcase_08 AC 223 ms
86,676 KB
testcase_09 AC 60 ms
66,944 KB
testcase_10 AC 124 ms
78,216 KB
testcase_11 AC 113 ms
78,264 KB
testcase_12 AC 115 ms
77,944 KB
testcase_13 AC 183 ms
83,584 KB
testcase_14 AC 128 ms
78,552 KB
testcase_15 AC 152 ms
80,512 KB
testcase_16 AC 112 ms
78,256 KB
testcase_17 AC 111 ms
77,588 KB
testcase_18 AC 118 ms
77,952 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import Counter

g, c, p = map(int, input().split())
s = input()

n = g + c + p
DP = [[[-1 for _ in range(p + 1)] for _ in range(c + 1)] for _ in range(g + 1)]
DP[g][c][p] = 0
for i in range(n):
    ss = s[i]
    res = n - i
    for j in range(g + 1):
        for k in range(c + 1):
            if 0 <= res - j - k <= p:
                l = res - j - k
                if ss == 'G':
                    if j > 0:
                        DP[j - 1][k][l] = max(DP[j - 1][k][l], DP[j][k][l] + 1)
                    if k > 0:
                        DP[j][k - 1][l] = max(DP[j][k - 1][l], DP[j][k][l])
                    if l > 0:
                        DP[j][k][l - 1] = max(DP[j][k][l - 1], DP[j][k][l] + 3)
                elif ss == 'C':
                    if j > 0:
                        DP[j - 1][k][l] = max(DP[j - 1][k][l], DP[j][k][l] + 3)
                    if k > 0:
                        DP[j][k - 1][l] = max(DP[j][k - 1][l], DP[j][k][l] + 1)
                    if l > 0:
                        DP[j][k][l - 1] = max(DP[j][k][l - 1], DP[j][k][l])
                else:
                    if j > 0:
                        DP[j - 1][k][l] = max(DP[j - 1][k][l], DP[j][k][l])
                    if k > 0:
                        DP[j][k - 1][l] = max(DP[j][k - 1][l], DP[j][k][l] + 3)
                    if l > 0:
                        DP[j][k][l - 1] = max(DP[j][k][l - 1], DP[j][k][l] + 1)
print(DP[0][0][0])
0