結果

問題 No.2248 max(C)-min(C)
ユーザー flygonflygon
提出日時 2023-03-17 22:25:03
言語 PyPy3
(7.3.15)
結果
WA  
実行時間 -
コード長 821 bytes
コンパイル時間 279 ms
コンパイル使用メモリ 81,732 KB
実行使用メモリ 205,200 KB
最終ジャッジ日時 2024-09-18 11:33:33
合計ジャッジ時間 17,815 ms
ジャッジサーバーID
(参考情報)
judge5 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,884 KB
testcase_01 AC 38 ms
53,132 KB
testcase_02 AC 38 ms
53,380 KB
testcase_03 AC 61 ms
71,980 KB
testcase_04 AC 57 ms
69,876 KB
testcase_05 AC 52 ms
66,036 KB
testcase_06 AC 79 ms
77,000 KB
testcase_07 AC 76 ms
77,472 KB
testcase_08 AC 75 ms
76,752 KB
testcase_09 AC 83 ms
77,172 KB
testcase_10 AC 50 ms
65,928 KB
testcase_11 AC 73 ms
77,124 KB
testcase_12 AC 67 ms
73,860 KB
testcase_13 AC 73 ms
77,100 KB
testcase_14 AC 85 ms
77,260 KB
testcase_15 AC 76 ms
76,812 KB
testcase_16 AC 59 ms
71,048 KB
testcase_17 AC 73 ms
77,276 KB
testcase_18 AC 390 ms
180,864 KB
testcase_19 AC 127 ms
89,356 KB
testcase_20 AC 452 ms
202,648 KB
testcase_21 AC 430 ms
188,812 KB
testcase_22 AC 332 ms
156,416 KB
testcase_23 AC 256 ms
123,884 KB
testcase_24 AC 163 ms
96,064 KB
testcase_25 AC 425 ms
180,728 KB
testcase_26 AC 371 ms
172,788 KB
testcase_27 AC 408 ms
180,988 KB
testcase_28 AC 141 ms
87,296 KB
testcase_29 AC 426 ms
179,104 KB
testcase_30 AC 220 ms
112,116 KB
testcase_31 AC 441 ms
203,088 KB
testcase_32 AC 166 ms
96,896 KB
testcase_33 AC 214 ms
111,716 KB
testcase_34 AC 437 ms
203,212 KB
testcase_35 AC 451 ms
202,452 KB
testcase_36 AC 450 ms
202,836 KB
testcase_37 AC 291 ms
142,032 KB
testcase_38 AC 509 ms
193,956 KB
testcase_39 AC 540 ms
193,272 KB
testcase_40 AC 517 ms
192,508 KB
testcase_41 WA -
testcase_42 AC 518 ms
201,456 KB
testcase_43 AC 478 ms
184,504 KB
testcase_44 AC 530 ms
194,788 KB
testcase_45 AC 429 ms
173,308 KB
testcase_46 AC 294 ms
123,348 KB
testcase_47 AC 510 ms
194,276 KB
testcase_48 AC 486 ms
195,292 KB
testcase_49 AC 461 ms
205,064 KB
testcase_50 AC 453 ms
205,196 KB
testcase_51 AC 465 ms
205,200 KB
testcase_52 AC 456 ms
205,076 KB
testcase_53 AC 137 ms
89,020 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

n = int(input())
a = list(map(int,input().split()))
b = list(map(int,input().split()))
c = [(a[i]+b[i])//2 for i in range(n)]

dp = [[[0,0] for i in range(3)] for i in range(n)]

dp[0][0] = [a[0],a[0]]
dp[0][1] = [b[0],b[0]]
dp[0][2] = [c[0],c[0]]

for i in range(1, n):
  ai, bi,ci = a[i],b[i], c[i]
  for jj,j in enumerate([ai,bi,ci]):
    tmp = [10**10, -1, -1 ]
    tmp = min(tmp, [max(dp[i-1][0][0],j) - min(dp[i-1][0][1],j), max(dp[i-1][0][0],j ),min(dp[i-1][0][1],j) ])
    tmp = min(tmp, [max(dp[i-1][1][0],j) - min(dp[i-1][1][1],j), max(dp[i-1][1][0],j ),min(dp[i-1][1][1],j) ])
    tmp = min(tmp, [max(dp[i-1][2][0],j) - min(dp[i-1][2][1],j), max(dp[i-1][2][0],j ),min(dp[i-1][2][1],j) ])
    dp[i][jj] = tmp[1:]

ans = float("inf")
for i in range(3):
  ans = min(dp[-1][i][0] - dp[-1][i][1], ans)

print(ans)

0