結果

問題 No.2248 max(C)-min(C)
ユーザー Alex WiceAlex Wice
提出日時 2023-03-17 22:58:29
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,453 ms / 3,000 ms
コード長 578 bytes
コンパイル時間 307 ms
コンパイル使用メモリ 82,440 KB
実行使用メモリ 146,772 KB
最終ジャッジ日時 2024-05-15 02:21:47
合計ジャッジ時間 36,982 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 38 ms
52,736 KB
testcase_01 AC 38 ms
52,736 KB
testcase_02 AC 39 ms
52,456 KB
testcase_03 AC 48 ms
61,056 KB
testcase_04 AC 43 ms
59,264 KB
testcase_05 AC 40 ms
53,632 KB
testcase_06 AC 57 ms
65,792 KB
testcase_07 AC 60 ms
66,816 KB
testcase_08 AC 62 ms
67,328 KB
testcase_09 AC 57 ms
64,724 KB
testcase_10 AC 41 ms
53,376 KB
testcase_11 AC 59 ms
66,816 KB
testcase_12 AC 49 ms
60,544 KB
testcase_13 AC 56 ms
65,084 KB
testcase_14 AC 58 ms
65,572 KB
testcase_15 AC 63 ms
67,712 KB
testcase_16 AC 47 ms
60,416 KB
testcase_17 AC 56 ms
64,880 KB
testcase_18 AC 250 ms
120,264 KB
testcase_19 AC 102 ms
82,984 KB
testcase_20 AC 275 ms
137,292 KB
testcase_21 AC 267 ms
120,304 KB
testcase_22 AC 218 ms
120,972 KB
testcase_23 AC 171 ms
99,628 KB
testcase_24 AC 116 ms
88,336 KB
testcase_25 AC 256 ms
117,372 KB
testcase_26 AC 251 ms
121,468 KB
testcase_27 AC 249 ms
118,000 KB
testcase_28 AC 101 ms
80,296 KB
testcase_29 AC 248 ms
122,336 KB
testcase_30 AC 152 ms
95,024 KB
testcase_31 AC 274 ms
137,008 KB
testcase_32 AC 117 ms
89,196 KB
testcase_33 AC 143 ms
92,800 KB
testcase_34 AC 298 ms
138,064 KB
testcase_35 AC 294 ms
137,940 KB
testcase_36 AC 281 ms
136,936 KB
testcase_37 AC 191 ms
111,692 KB
testcase_38 AC 1,732 ms
127,796 KB
testcase_39 AC 1,732 ms
127,912 KB
testcase_40 AC 1,716 ms
127,416 KB
testcase_41 AC 1,457 ms
128,308 KB
testcase_42 AC 1,714 ms
127,780 KB
testcase_43 AC 1,506 ms
127,752 KB
testcase_44 AC 1,623 ms
127,412 KB
testcase_45 AC 1,195 ms
129,900 KB
testcase_46 AC 706 ms
100,672 KB
testcase_47 AC 1,762 ms
127,420 KB
testcase_48 AC 1,400 ms
140,324 KB
testcase_49 AC 2,453 ms
146,536 KB
testcase_50 AC 2,265 ms
146,772 KB
testcase_51 AC 2,295 ms
146,072 KB
testcase_52 AC 2,285 ms
146,084 KB
testcase_53 AC 336 ms
88,144 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

pq = []
for i in range(N):
    if A[i] > B[i]: A[i],B[i]=B[i],A[i]
    pq.append([A[i], i, 0])

from heapq import *
hi = max(x for x,i,j in pq)
heapify(pq)
ans = hi - pq[0][0]
while pq:
    x,i,j = heappop(pq)
    if j == 2:
        break
    if j == 0:
        x = A[i] + B[i] >> 1
        hi = max(hi, x)
        heappush(pq, [x,i,j+1])
    if j == 1:
        x = B[i]
        hi = max(hi, x)
        heappush(pq, [x,i,j+1])
    if pq:
        ans = min(ans, hi - pq[0][0])

print(ans)
0