結果

問題 No.2196 Pair Bonus
ユーザー flygonflygon
提出日時 2023-01-20 21:40:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 230 ms / 2,000 ms
コード長 523 bytes
コンパイル時間 195 ms
コンパイル使用メモリ 82,572 KB
実行使用メモリ 139,048 KB
最終ジャッジ日時 2024-06-23 09:35:50
合計ジャッジ時間 3,138 ms
ジャッジサーバーID
(参考情報)
judge4 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 36 ms
53,420 KB
testcase_01 AC 39 ms
53,320 KB
testcase_02 AC 44 ms
53,460 KB
testcase_03 AC 230 ms
139,048 KB
testcase_04 AC 210 ms
138,960 KB
testcase_05 AC 47 ms
63,872 KB
testcase_06 AC 42 ms
60,300 KB
testcase_07 AC 47 ms
64,680 KB
testcase_08 AC 81 ms
85,304 KB
testcase_09 AC 199 ms
124,536 KB
testcase_10 AC 157 ms
120,940 KB
testcase_11 AC 90 ms
87,160 KB
testcase_12 AC 178 ms
118,816 KB
testcase_13 AC 47 ms
63,308 KB
testcase_14 AC 69 ms
79,756 KB
testcase_15 AC 49 ms
65,308 KB
testcase_16 AC 195 ms
127,924 KB
testcase_17 AC 55 ms
69,616 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
x = list(map(int,input().split()))
y = list(map(int,input().split()))

dp = [[0,0] for i in range(2*n)]
dp[0] = [a[0],b[0]]
for i in range(1, 2*n):
  ai,bi = a[i], b[i]
  if i % 2 == 1:
    xi,yi = x[i//2], y[i//2]
    dp[i][0] = max(dp[i-1][0] + ai + xi, dp[i-1][1] + ai + yi)
    dp[i][1] = max(dp[i-1][0] + bi + yi, dp[i-1][1] + bi + xi)
  else:
    dp[i][0] = max(dp[i-1]) + ai
    dp[i][1] = max(dp[i-1]) + bi
  
print(max(dp[-1]))
0