結果

問題 No.704 ゴミ拾い Medium
ユーザー mkawa2mkawa2
提出日時 2024-10-30 21:49:40
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 262 ms / 1,500 ms
コード長 1,170 bytes
コンパイル時間 429 ms
コンパイル使用メモリ 82,372 KB
実行使用メモリ 165,080 KB
最終ジャッジ日時 2024-10-30 21:49:51
合計ジャッジ時間 11,363 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,900 KB
testcase_01 AC 39 ms
53,860 KB
testcase_02 AC 40 ms
55,160 KB
testcase_03 AC 40 ms
54,328 KB
testcase_04 AC 44 ms
55,560 KB
testcase_05 AC 41 ms
53,864 KB
testcase_06 AC 41 ms
54,792 KB
testcase_07 AC 41 ms
54,836 KB
testcase_08 AC 41 ms
54,748 KB
testcase_09 AC 41 ms
55,092 KB
testcase_10 AC 39 ms
54,920 KB
testcase_11 AC 40 ms
55,872 KB
testcase_12 AC 40 ms
54,184 KB
testcase_13 AC 40 ms
54,512 KB
testcase_14 AC 48 ms
62,828 KB
testcase_15 AC 47 ms
62,140 KB
testcase_16 AC 47 ms
62,940 KB
testcase_17 AC 47 ms
62,332 KB
testcase_18 AC 46 ms
61,592 KB
testcase_19 AC 47 ms
62,504 KB
testcase_20 AC 47 ms
62,104 KB
testcase_21 AC 47 ms
63,636 KB
testcase_22 AC 48 ms
61,840 KB
testcase_23 AC 48 ms
63,064 KB
testcase_24 AC 240 ms
162,380 KB
testcase_25 AC 260 ms
162,156 KB
testcase_26 AC 244 ms
162,008 KB
testcase_27 AC 248 ms
162,148 KB
testcase_28 AC 247 ms
162,496 KB
testcase_29 AC 220 ms
162,148 KB
testcase_30 AC 262 ms
162,224 KB
testcase_31 AC 245 ms
162,104 KB
testcase_32 AC 233 ms
162,172 KB
testcase_33 AC 240 ms
162,244 KB
testcase_34 AC 248 ms
159,388 KB
testcase_35 AC 245 ms
159,432 KB
testcase_36 AC 243 ms
159,604 KB
testcase_37 AC 261 ms
159,292 KB
testcase_38 AC 245 ms
159,236 KB
testcase_39 AC 237 ms
159,808 KB
testcase_40 AC 252 ms
159,436 KB
testcase_41 AC 248 ms
159,476 KB
testcase_42 AC 257 ms
159,492 KB
testcase_43 AC 238 ms
159,604 KB
testcase_44 AC 40 ms
54,576 KB
testcase_45 AC 40 ms
54,684 KB
testcase_46 AC 208 ms
165,080 KB
testcase_47 AC 242 ms
162,684 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

sys.setrecursionlimit(200005)
# sys.set_int_max_str_digits(200005)
int1 = lambda x: int(x)-1
pDB = lambda *x: print(*x, end="\n", file=sys.stderr)
p2D = lambda x: print(*x, sep="\n", end="\n\n", file=sys.stderr)
def II(): return int(sys.stdin.readline())
def LI(): return list(map(int, sys.stdin.readline().split()))
def LLI(rows_number): return [LI() for _ in range(rows_number)]
def LI1(): return list(map(int1, sys.stdin.readline().split()))
def LLI1(rows_number): return [LI1() for _ in range(rows_number)]
def SI(): return sys.stdin.readline().rstrip()

# dij = [(0, 1), (-1, 0), (0, -1), (1, 0)]
# dij = [(0, 1), (-1, 0), (0, -1), (1, 0), (1, 1), (1, -1), (-1, 1), (-1, -1)]
# inf = -1-(-1 << 31)
inf = -1-(-1 << 62)

md = 10**9+7
# md = 998244353

from collections import deque

n=II()
aa=LI()
xx=LI()
yy=LI()

l=inf
r=deque()
dp=[0]+[inf]*n
j=0
for i in range(n):
    a,x,y=aa[i],xx[i],yy[i]
    v=dp[i]+x+y
    while r and r[-1][-1]>=v:r.pop()
    r.append((x,v))
    while r and r[0][0]<a:r.popleft()
    while j<=i and xx[j]<a:
        l=min(l,dp[j]+yy[j]-xx[j])
        j+=1
    dp[i+1]=l+a
    if r:dp[i+1]=min(dp[i+1],r[0][-1]-a)
print(dp[-1])
0