結果

問題 No.2248 max(C)-min(C)
ユーザー ikomaikoma
提出日時 2023-03-18 01:20:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 810 ms / 3,000 ms
コード長 607 bytes
コンパイル時間 304 ms
コンパイル使用メモリ 81,860 KB
実行使用メモリ 143,736 KB
最終ジャッジ日時 2024-09-18 12:49:27
合計ジャッジ時間 16,492 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
54,100 KB
testcase_01 AC 39 ms
52,756 KB
testcase_02 AC 40 ms
52,864 KB
testcase_03 AC 47 ms
62,908 KB
testcase_04 AC 45 ms
59,936 KB
testcase_05 AC 42 ms
53,476 KB
testcase_06 AC 60 ms
66,532 KB
testcase_07 AC 59 ms
68,392 KB
testcase_08 AC 63 ms
68,692 KB
testcase_09 AC 61 ms
67,180 KB
testcase_10 AC 41 ms
53,336 KB
testcase_11 AC 58 ms
67,376 KB
testcase_12 AC 47 ms
61,936 KB
testcase_13 AC 56 ms
66,848 KB
testcase_14 AC 60 ms
67,868 KB
testcase_15 AC 64 ms
68,420 KB
testcase_16 AC 48 ms
60,684 KB
testcase_17 AC 61 ms
68,904 KB
testcase_18 AC 185 ms
117,352 KB
testcase_19 AC 74 ms
79,488 KB
testcase_20 AC 205 ms
143,176 KB
testcase_21 AC 206 ms
142,916 KB
testcase_22 AC 161 ms
109,100 KB
testcase_23 AC 127 ms
96,128 KB
testcase_24 AC 86 ms
83,584 KB
testcase_25 AC 193 ms
116,796 KB
testcase_26 AC 189 ms
113,352 KB
testcase_27 AC 192 ms
117,076 KB
testcase_28 AC 78 ms
77,952 KB
testcase_29 AC 193 ms
117,360 KB
testcase_30 AC 121 ms
93,312 KB
testcase_31 AC 212 ms
143,736 KB
testcase_32 AC 91 ms
85,516 KB
testcase_33 AC 107 ms
91,144 KB
testcase_34 AC 230 ms
142,968 KB
testcase_35 AC 232 ms
143,480 KB
testcase_36 AC 219 ms
143,356 KB
testcase_37 AC 140 ms
103,128 KB
testcase_38 AC 665 ms
122,596 KB
testcase_39 AC 648 ms
122,764 KB
testcase_40 AC 659 ms
122,376 KB
testcase_41 AC 572 ms
116,824 KB
testcase_42 AC 642 ms
122,504 KB
testcase_43 AC 597 ms
116,188 KB
testcase_44 AC 654 ms
122,336 KB
testcase_45 AC 532 ms
112,412 KB
testcase_46 AC 334 ms
98,664 KB
testcase_47 AC 655 ms
122,760 KB
testcase_48 AC 568 ms
133,692 KB
testcase_49 AC 784 ms
143,124 KB
testcase_50 AC 789 ms
143,252 KB
testcase_51 AC 802 ms
143,068 KB
testcase_52 AC 810 ms
143,060 KB
testcase_53 AC 189 ms
84,352 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import *
INF=1<<60
N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
M=[]
mx=-INF
for i in range(N):
    if A[i]>B[i]:A[i],B[i]=B[i],A[i]
    M.append(A[i]+B[i]>>1)
heap=[]
for i,a in enumerate(A):
    heappush(heap, (a,i))
    mx = max(mx,a)
ans=mx-heap[0][0]
while True:
    x,i = heappop(heap)
    if x==B[i]:break
    if x==M[i]:
        b=B[i]
        heappush(heap, (b,i))
        mx = max(mx,b)
    else:
        m = M[i]
        heappush(heap, (m,i))
        mx = max(mx,m)
    ans = min(ans, mx-heap[0][0])

print(ans)
0