結果

問題 No.2889 Rusk
ユーザー mattu34mattu34
提出日時 2024-09-27 21:35:05
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 3,022 bytes
コンパイル時間 269 ms
コンパイル使用メモリ 82,048 KB
実行使用メモリ 207,624 KB
最終ジャッジ日時 2024-09-27 21:35:26
合計ジャッジ時間 20,031 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 139 ms
88,832 KB
testcase_01 AC 133 ms
88,704 KB
testcase_02 AC 136 ms
88,448 KB
testcase_03 AC 148 ms
88,756 KB
testcase_04 AC 142 ms
89,088 KB
testcase_05 AC 140 ms
88,960 KB
testcase_06 AC 143 ms
89,216 KB
testcase_07 AC 138 ms
88,576 KB
testcase_08 AC 140 ms
89,272 KB
testcase_09 AC 138 ms
89,172 KB
testcase_10 AC 134 ms
88,784 KB
testcase_11 AC 155 ms
88,924 KB
testcase_12 WA -
testcase_13 WA -
testcase_14 AC 164 ms
92,032 KB
testcase_15 AC 199 ms
104,320 KB
testcase_16 WA -
testcase_17 AC 191 ms
100,352 KB
testcase_18 WA -
testcase_19 AC 375 ms
168,192 KB
testcase_20 AC 437 ms
191,820 KB
testcase_21 WA -
testcase_22 WA -
testcase_23 AC 296 ms
132,692 KB
testcase_24 AC 456 ms
183,424 KB
testcase_25 WA -
testcase_26 AC 372 ms
167,984 KB
testcase_27 AC 452 ms
195,360 KB
testcase_28 AC 317 ms
145,304 KB
testcase_29 AC 329 ms
146,824 KB
testcase_30 WA -
testcase_31 AC 453 ms
194,360 KB
testcase_32 AC 263 ms
124,208 KB
testcase_33 AC 186 ms
100,020 KB
testcase_34 AC 511 ms
207,360 KB
testcase_35 WA -
testcase_36 AC 504 ms
206,976 KB
testcase_37 AC 524 ms
207,368 KB
testcase_38 WA -
testcase_39 AC 412 ms
158,156 KB
testcase_40 WA -
testcase_41 WA -
testcase_42 WA -
testcase_43 WA -
testcase_44 WA -
testcase_45 AC 322 ms
143,720 KB
testcase_46 AC 211 ms
102,720 KB
testcase_47 AC 253 ms
115,968 KB
testcase_48 AC 372 ms
154,508 KB
testcase_49 AC 140 ms
88,596 KB
testcase_50 AC 140 ms
88,832 KB
testcase_51 AC 140 ms
88,576 KB
testcase_52 AC 151 ms
88,576 KB
testcase_53 AC 139 ms
88,704 KB
testcase_54 AC 493 ms
206,428 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 = [[-INF] * 5 for _ in range(N + 1)]
dp[0][0] = 0
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 = [[-INF] * 4 for _ in range(N + 1)]
dp2[0][0] = 0
for i in range(N):
    for j in range(4):
        tmp = 0
        for k in range(j + 1):
            tmp = max(tmp, dp2[i][k])
        if j == 0 or j == 2:
            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