結果

問題 No.2889 Rusk
ユーザー mattu34mattu34
提出日時 2024-09-27 21:48:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 418 ms / 2,000 ms
コード長 2,999 bytes
コンパイル時間 353 ms
コンパイル使用メモリ 82,260 KB
実行使用メモリ 157,068 KB
最終ジャッジ日時 2024-09-27 21:49:08
合計ジャッジ時間 16,490 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 135 ms
88,704 KB
testcase_01 AC 139 ms
88,576 KB
testcase_02 AC 135 ms
88,704 KB
testcase_03 AC 136 ms
88,832 KB
testcase_04 AC 138 ms
89,204 KB
testcase_05 AC 139 ms
88,832 KB
testcase_06 AC 145 ms
89,088 KB
testcase_07 AC 137 ms
88,576 KB
testcase_08 AC 145 ms
88,996 KB
testcase_09 AC 142 ms
89,216 KB
testcase_10 AC 135 ms
88,684 KB
testcase_11 AC 137 ms
88,704 KB
testcase_12 AC 140 ms
89,216 KB
testcase_13 AC 139 ms
89,176 KB
testcase_14 AC 187 ms
91,904 KB
testcase_15 AC 201 ms
104,064 KB
testcase_16 AC 254 ms
114,944 KB
testcase_17 AC 189 ms
97,792 KB
testcase_18 AC 254 ms
112,876 KB
testcase_19 AC 353 ms
143,376 KB
testcase_20 AC 374 ms
145,104 KB
testcase_21 AC 323 ms
144,272 KB
testcase_22 AC 320 ms
140,044 KB
testcase_23 AC 274 ms
115,496 KB
testcase_24 AC 347 ms
143,812 KB
testcase_25 AC 267 ms
115,328 KB
testcase_26 AC 338 ms
143,788 KB
testcase_27 AC 371 ms
149,032 KB
testcase_28 AC 287 ms
128,924 KB
testcase_29 AC 290 ms
132,236 KB
testcase_30 AC 304 ms
131,780 KB
testcase_31 AC 353 ms
147,396 KB
testcase_32 AC 248 ms
113,752 KB
testcase_33 AC 183 ms
94,928 KB
testcase_34 AC 418 ms
156,936 KB
testcase_35 AC 382 ms
156,936 KB
testcase_36 AC 395 ms
157,068 KB
testcase_37 AC 406 ms
156,812 KB
testcase_38 AC 381 ms
156,816 KB
testcase_39 AC 337 ms
138,368 KB
testcase_40 AC 321 ms
132,812 KB
testcase_41 AC 378 ms
155,644 KB
testcase_42 AC 303 ms
132,608 KB
testcase_43 AC 232 ms
113,408 KB
testcase_44 AC 336 ms
138,428 KB
testcase_45 AC 310 ms
129,256 KB
testcase_46 AC 201 ms
102,272 KB
testcase_47 AC 233 ms
116,096 KB
testcase_48 AC 323 ms
136,264 KB
testcase_49 AC 136 ms
88,704 KB
testcase_50 AC 137 ms
88,704 KB
testcase_51 AC 142 ms
88,576 KB
testcase_52 AC 139 ms
88,756 KB
testcase_53 AC 147 ms
88,448 KB
testcase_54 AC 403 ms
156,484 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from collections import *
import sys
import heapq
from heapq import heapify, heappop, heappush
import bisect
from bisect import bisect_left, bisect_right
import itertools
from functools import lru_cache
from types import GeneratorType
from fractions import Fraction
import math
import copy
import random

# import numpy as np

# sys.setrecursionlimit(int(1e7))
# @lru_cache(maxsize=None) # CPython特化
# @bootstrap # PyPy特化(こっちのほうが速い) yield dfs(), yield Noneを忘れずに


def bootstrap(f, stack=[]):  # yield
    def wrappedfunc(*args, **kwargs):
        if stack:
            return f(*args, **kwargs)
        else:
            to = f(*args, **kwargs)
            while True:
                if type(to) is GeneratorType:
                    stack.append(to)
                    to = next(to)
                else:
                    stack.pop()
                    if not stack:
                        break
                    to = stack[-1].send(to)
            return to

    return wrappedfunc


dxdy1 = ((0, 1), (0, -1), (1, 0), (-1, 0))  # 上下右左
dxdy2 = (
    (0, 1),
    (0, -1),
    (1, 0),
    (-1, 0),
    (1, 1),
    (-1, -1),
    (1, -1),
    (-1, 1),
)  # 8方向すべて
dxdy3 = ((0, 1), (1, 0))  # 右 or 下
dxdy4 = ((1, 1), (1, -1), (-1, 1), (-1, -1))  # 斜め
INF = float("inf")
_INF = 1 << 60
MOD = 998244353
mod = 998244353
MOD2 = 10**9 + 7
mod2 = 10**9 + 7
# memo : len([a,b,...,z])==26
# memo : 2^20 >= 10^6
# 小数の計算を避ける : x/y -> (x*big)//y  ex:big=10**9
# @:小さい文字, ~:大きい文字,None: 空の文字列
# ユークリッドの互除法:gcd(x,y)=gcd(x,y-x)
# memo : d 桁以下の p 進表記を用いると p^d-1 以下のすべての
#        非負整数を表現することができる
# memo : (X,Y) -> (X+Y,X−Y) <=> 点を原点を中心に45度回転し、√2倍に拡大
# memo : (x,y)のx正から見た偏角をラジアンで(-πからπ]: math.atan2(y, x)
# memo : a < bのとき ⌊a⌋ ≦ ⌊b⌋

input = lambda: sys.stdin.readline().rstrip()
mi = lambda: map(int, input().split())
li = lambda: list(mi())
ii = lambda: int(input())
py = lambda: print("Yes")
pn = lambda: print("No")
pf = lambda: print("First")
ps = lambda: print("Second")

N = ii()
A = li()
B = li()
C = li()
dp = [[0] * 5 for _ in range(N + 1)]
for i in range(N):
    for j in range(5):
        tmp = 0
        for k in range(j + 1):
            tmp = max(tmp, dp[i][k])
        if j == 0 or j == 4:
            dp[i + 1][j] = tmp + A[i]
        if j == 1 or j == 3:
            dp[i + 1][j] = tmp + B[i]
        if j == 2:
            dp[i + 1][j] = tmp + C[i]

dp2 = [[0] * 5 for _ in range(N + 1)]
for i in range(N):
    for j in range(5):
        tmp = 0
        for k in range(j + 1):
            tmp = max(tmp, dp2[i][k])
        if j == 0 or j == 2 or j == 4:
            dp2[i + 1][j] = tmp + A[i]
        if j == 1 or j == 3:
            dp2[i + 1][j] = tmp + B[i]
print(max(max(dp[-1]), max(dp2[-1])))
0