結果

問題 No.2248 max(C)-min(C)
ユーザー H20H20
提出日時 2023-03-24 11:11:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,937 ms / 3,000 ms
コード長 651 bytes
コンパイル時間 258 ms
コンパイル使用メモリ 81,920 KB
実行使用メモリ 152,196 KB
最終ジャッジ日時 2024-11-26 13:28:16
合計ジャッジ時間 56,607 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
51,968 KB
testcase_01 AC 39 ms
52,224 KB
testcase_02 AC 39 ms
52,352 KB
testcase_03 AC 76 ms
71,424 KB
testcase_04 AC 74 ms
70,656 KB
testcase_05 AC 57 ms
62,976 KB
testcase_06 AC 110 ms
76,840 KB
testcase_07 AC 119 ms
77,132 KB
testcase_08 AC 113 ms
77,356 KB
testcase_09 AC 114 ms
77,128 KB
testcase_10 AC 56 ms
62,336 KB
testcase_11 AC 115 ms
76,876 KB
testcase_12 AC 85 ms
74,752 KB
testcase_13 AC 106 ms
76,804 KB
testcase_14 AC 124 ms
77,112 KB
testcase_15 AC 120 ms
77,468 KB
testcase_16 AC 81 ms
74,112 KB
testcase_17 AC 113 ms
76,988 KB
testcase_18 AC 1,568 ms
137,608 KB
testcase_19 AC 225 ms
83,548 KB
testcase_20 AC 1,818 ms
149,636 KB
testcase_21 AC 1,786 ms
147,584 KB
testcase_22 AC 1,128 ms
123,220 KB
testcase_23 AC 700 ms
108,340 KB
testcase_24 AC 283 ms
87,168 KB
testcase_25 AC 1,640 ms
139,252 KB
testcase_26 AC 1,432 ms
131,652 KB
testcase_27 AC 1,699 ms
139,216 KB
testcase_28 AC 195 ms
82,432 KB
testcase_29 AC 1,530 ms
135,800 KB
testcase_30 AC 572 ms
96,936 KB
testcase_31 AC 1,791 ms
150,016 KB
testcase_32 AC 326 ms
88,960 KB
testcase_33 AC 502 ms
95,716 KB
testcase_34 AC 1,845 ms
150,144 KB
testcase_35 AC 1,838 ms
149,256 KB
testcase_36 AC 1,861 ms
151,212 KB
testcase_37 AC 866 ms
116,004 KB
testcase_38 AC 1,869 ms
146,304 KB
testcase_39 AC 1,879 ms
147,460 KB
testcase_40 AC 1,892 ms
146,296 KB
testcase_41 AC 1,580 ms
136,448 KB
testcase_42 AC 1,892 ms
146,296 KB
testcase_43 AC 1,689 ms
138,324 KB
testcase_44 AC 1,843 ms
147,072 KB
testcase_45 AC 1,488 ms
131,476 KB
testcase_46 AC 743 ms
104,244 KB
testcase_47 AC 1,937 ms
146,688 KB
testcase_48 AC 1,162 ms
145,644 KB
testcase_49 AC 1,880 ms
151,680 KB
testcase_50 AC 1,841 ms
152,196 KB
testcase_51 AC 1,889 ms
151,800 KB
testcase_52 AC 1,882 ms
152,068 KB
testcase_53 AC 292 ms
88,192 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = []
mi_max = 10**9
for i in range(N):
    if A[i]>B[i]:
        A[i],B[i]=B[i],A[i]
    C.append([A[i],(A[i]+B[i])//2,B[i]])
    mi_max = min(mi_max,B[i])
mi = 10**9
ma = 0
h = []
for i,a in enumerate(A):
    mi = min(mi,a)
    ma = max(ma,a)
    heapq.heappush(h,(a,i,0))
ans = ma-mi
while h:
    before,i,ii= heapq.heappop(h)
    if ii==0:
        heapq.heappush(h,((A[i]+B[i])//2,i,1))
        ma = max(ma,(A[i]+B[i])//2)
    if ii==1:
        ma = max(ma,B[i])
    if len(h):
        mi=min(h[0][0],mi_max)
    ans = min(ans,ma-mi)
print(ans)
0