結果

問題 No.2248 max(C)-min(C)
ユーザー lloyzlloyz
提出日時 2023-03-22 00:07:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 669 ms / 3,000 ms
コード長 666 bytes
コンパイル時間 713 ms
コンパイル使用メモリ 82,104 KB
実行使用メモリ 143,876 KB
最終ジャッジ日時 2024-09-18 14:35:07
合計ジャッジ時間 14,132 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 33 ms
52,352 KB
testcase_01 AC 34 ms
52,480 KB
testcase_02 AC 33 ms
52,864 KB
testcase_03 AC 51 ms
60,416 KB
testcase_04 AC 41 ms
59,648 KB
testcase_05 AC 35 ms
52,992 KB
testcase_06 AC 51 ms
66,688 KB
testcase_07 AC 51 ms
66,816 KB
testcase_08 AC 53 ms
68,608 KB
testcase_09 AC 54 ms
67,384 KB
testcase_10 AC 36 ms
53,120 KB
testcase_11 AC 51 ms
67,456 KB
testcase_12 AC 40 ms
61,184 KB
testcase_13 AC 49 ms
65,280 KB
testcase_14 AC 52 ms
67,584 KB
testcase_15 AC 56 ms
68,828 KB
testcase_16 AC 42 ms
61,056 KB
testcase_17 AC 56 ms
67,456 KB
testcase_18 AC 163 ms
117,480 KB
testcase_19 AC 66 ms
80,128 KB
testcase_20 AC 180 ms
143,364 KB
testcase_21 AC 193 ms
143,068 KB
testcase_22 AC 143 ms
109,152 KB
testcase_23 AC 120 ms
96,000 KB
testcase_24 AC 83 ms
84,096 KB
testcase_25 AC 173 ms
117,184 KB
testcase_26 AC 171 ms
113,484 KB
testcase_27 AC 167 ms
117,412 KB
testcase_28 AC 66 ms
77,912 KB
testcase_29 AC 167 ms
117,488 KB
testcase_30 AC 104 ms
93,952 KB
testcase_31 AC 185 ms
143,876 KB
testcase_32 AC 80 ms
85,632 KB
testcase_33 AC 94 ms
91,136 KB
testcase_34 AC 200 ms
143,312 KB
testcase_35 AC 198 ms
143,484 KB
testcase_36 AC 188 ms
143,740 KB
testcase_37 AC 122 ms
102,924 KB
testcase_38 AC 483 ms
122,764 KB
testcase_39 AC 480 ms
122,708 KB
testcase_40 AC 490 ms
122,808 KB
testcase_41 AC 435 ms
116,960 KB
testcase_42 AC 500 ms
122,496 KB
testcase_43 AC 455 ms
116,524 KB
testcase_44 AC 495 ms
122,964 KB
testcase_45 AC 403 ms
112,360 KB
testcase_46 AC 240 ms
98,688 KB
testcase_47 AC 510 ms
122,752 KB
testcase_48 AC 511 ms
133,876 KB
testcase_49 AC 656 ms
143,252 KB
testcase_50 AC 658 ms
143,196 KB
testcase_51 AC 669 ms
143,332 KB
testcase_52 AC 643 ms
143,128 KB
testcase_53 AC 153 ms
84,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import heapify, heappop, heappush
import sys
input = sys.stdin.readline

n = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
M = []
for i in range(n):
    if A[i] > B[i]:
        A[i], B[i] = B[i], A[i]
    M.append((A[i] + B[i]) // 2)
H = []
max_ = -10**18
for i in range(n):
    heappush(H, (A[i], i))
    max_ = max(max_, A[i])
ans = max_ - H[0][0]
while True:
    x, i = heappop(H)
    if x == B[i]:
        break
    elif x == M[i]:
        heappush(H, (B[i], i))
        max_ = max(max_, B[i])
    else:
        heappush(H, (M[i], i))
        max_ = max(max_, M[i])
    ans = min(ans, max_ - H[0][0])
print(ans)
0