結果

問題 No.2889 Rusk
ユーザー wgrapewgrape
提出日時 2024-11-01 11:52:43
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 1,816 bytes
コンパイル時間 256 ms
コンパイル使用メモリ 82,552 KB
実行使用メモリ 170,268 KB
最終ジャッジ日時 2024-11-01 11:53:03
合計ジャッジ時間 20,243 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
53,196 KB
testcase_01 AC 37 ms
52,944 KB
testcase_02 AC 36 ms
53,260 KB
testcase_03 WA -
testcase_04 WA -
testcase_05 AC 37 ms
53,072 KB
testcase_06 WA -
testcase_07 WA -
testcase_08 WA -
testcase_09 WA -
testcase_10 AC 38 ms
52,460 KB
testcase_11 WA -
testcase_12 WA -
testcase_13 WA -
testcase_14 WA -
testcase_15 WA -
testcase_16 WA -
testcase_17 WA -
testcase_18 WA -
testcase_19 WA -
testcase_20 WA -
testcase_21 WA -
testcase_22 WA -
testcase_23 WA -
testcase_24 WA -
testcase_25 WA -
testcase_26 WA -
testcase_27 WA -
testcase_28 WA -
testcase_29 WA -
testcase_30 WA -
testcase_31 WA -
testcase_32 WA -
testcase_33 WA -
testcase_34 WA -
testcase_35 WA -
testcase_36 WA -
testcase_37 WA -
testcase_38 WA -
testcase_39 WA -
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 WA -
testcase_46 WA -
testcase_47 WA -
testcase_48 WA -
testcase_49 AC 37 ms
52,468 KB
testcase_50 AC 38 ms
53,404 KB
testcase_51 AC 37 ms
53,572 KB
testcase_52 WA -
testcase_53 WA -
testcase_54 AC 618 ms
169,972 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

# dp[i][j][k] = i番目まで見たときに、
# j:0 トースター1の権利を使ってない、1:権利を使っている、2:権利を使い終わった
# k:0 トースター2の権利を使ってない、1:権利を使っている、2:権利を使い終わった

# 3 * 3 = 9通りだが、1を使わずに2を使うパターンは除外する
# また、トースターを両方使っているときに片方の権利をやめるときは、トースター2からやめるようにする

N = int(input())
A = list(map(int,input().split()))
B = list(map(int,input().split()))
C = list(map(int,input().split()))
INF = 1 << 60
dp = [[[-INF] * 3 for j in range(3)] for i in range(N + 1)]

# 起こり得る状態を設定
dp[0][0][0] = 0

for i in range(N):
#    print("target", A[i])
    for from_j in range(3):
        for to_j in range(from_j, 3): # 前の状態には戻れない
            for from_k in range(3):
                for to_k in range(from_k,3): # 前の状態には戻れない
                    val = 0
                    toaster = 0
                    if to_j == 1:
                        toaster += 1
                    if to_k == 1:
                        toaster += 1
                    if toaster == 0:
                        val = A[i]
                    elif toaster == 1:
                        val = B[i]
                    elif toaster == 2:
                        val = C[i]
#                    print("from:",from_j, from_k, "to:",to_j, to_k,"val:",val,"toaster",toaster)
                    dp[i + 1][to_j][to_k] = max(dp[i + 1][to_j][to_j], dp[i][from_j][from_k] + val)
#    print("遷移先",dp[i + 1])
       
#print(dp)             
ans = 0
for j in range(3):
    for k in range(3):
        ans = max(ans, dp[N][j][k])
        
print(ans)



    
    
    
0