結果

問題 No.2889 Rusk
ユーザー wgrapewgrape
提出日時 2024-11-01 13:49:22
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 1,614 bytes
コンパイル時間 383 ms
コンパイル使用メモリ 82,140 KB
実行使用メモリ 169,468 KB
最終ジャッジ日時 2024-11-01 13:49:42
合計ジャッジ時間 18,956 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,144 KB
testcase_01 AC 37 ms
52,712 KB
testcase_02 AC 36 ms
52,404 KB
testcase_03 AC 36 ms
53,108 KB
testcase_04 AC 53 ms
65,656 KB
testcase_05 AC 36 ms
53,720 KB
testcase_06 AC 53 ms
66,064 KB
testcase_07 AC 43 ms
60,236 KB
testcase_08 AC 53 ms
64,628 KB
testcase_09 AC 50 ms
64,800 KB
testcase_10 AC 36 ms
52,360 KB
testcase_11 AC 42 ms
59,364 KB
testcase_12 AC 53 ms
65,976 KB
testcase_13 AC 51 ms
65,924 KB
testcase_14 AC 97 ms
79,436 KB
testcase_15 AC 154 ms
90,200 KB
testcase_16 AC 296 ms
113,052 KB
testcase_17 AC 130 ms
85,776 KB
testcase_18 AC 256 ms
105,764 KB
testcase_19 AC 466 ms
133,160 KB
testcase_20 AC 511 ms
156,272 KB
testcase_21 AC 425 ms
134,088 KB
testcase_22 AC 416 ms
128,880 KB
testcase_23 AC 309 ms
118,300 KB
testcase_24 AC 544 ms
154,920 KB
testcase_25 AC 327 ms
118,144 KB
testcase_26 AC 423 ms
131,700 KB
testcase_27 AC 558 ms
158,816 KB
testcase_28 AC 346 ms
121,960 KB
testcase_29 AC 351 ms
124,336 KB
testcase_30 AC 346 ms
124,288 KB
testcase_31 AC 553 ms
157,288 KB
testcase_32 AC 275 ms
106,816 KB
testcase_33 AC 123 ms
84,784 KB
testcase_34 AC 629 ms
168,972 KB
testcase_35 AC 632 ms
169,468 KB
testcase_36 AC 642 ms
169,384 KB
testcase_37 AC 610 ms
169,104 KB
testcase_38 AC 629 ms
168,956 KB
testcase_39 AC 572 ms
156,092 KB
testcase_40 AC 428 ms
132,224 KB
testcase_41 AC 577 ms
159,616 KB
testcase_42 AC 432 ms
132,564 KB
testcase_43 AC 224 ms
99,808 KB
testcase_44 AC 534 ms
150,664 KB
testcase_45 AC 426 ms
131,284 KB
testcase_46 AC 157 ms
91,184 KB
testcase_47 AC 237 ms
102,020 KB
testcase_48 AC 488 ms
141,552 KB
testcase_49 AC 38 ms
52,492 KB
testcase_50 AC 36 ms
52,924 KB
testcase_51 AC 36 ms
53,048 KB
testcase_52 AC 36 ms
52,488 KB
testcase_53 AC 36 ms
53,068 KB
testcase_54 AC 590 ms
169,280 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()))
T = [A] + [B] + [C]
#print(T)
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):
    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_cnt = (to_j & 1) + (to_k & 1)
                    val = T[toaster_cnt][i]
#                    print("from:",from_j, from_k, "to:",to_j, to_k,"val:",val,"toaster",toaster_cnt)
#                    print("遷移すると",dp[i][from_j][from_k] + val)
                    dp[i + 1][to_j][to_k] = max(dp[i + 1][to_j][to_k], 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