結果

問題 No.2248 max(C)-min(C)
ユーザー H20H20
提出日時 2023-03-24 11:11:56
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,840 ms / 3,000 ms
コード長 651 bytes
コンパイル時間 463 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 152,324 KB
最終ジャッジ日時 2024-05-04 22:51:16
合計ジャッジ時間 50,973 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
52,224 KB
testcase_01 AC 37 ms
52,480 KB
testcase_02 AC 37 ms
52,224 KB
testcase_03 AC 64 ms
71,552 KB
testcase_04 AC 63 ms
71,424 KB
testcase_05 AC 49 ms
63,488 KB
testcase_06 AC 93 ms
77,092 KB
testcase_07 AC 104 ms
77,764 KB
testcase_08 AC 101 ms
77,700 KB
testcase_09 AC 108 ms
77,264 KB
testcase_10 AC 51 ms
62,720 KB
testcase_11 AC 100 ms
77,724 KB
testcase_12 AC 73 ms
74,752 KB
testcase_13 AC 95 ms
77,056 KB
testcase_14 AC 107 ms
77,372 KB
testcase_15 AC 101 ms
77,720 KB
testcase_16 AC 71 ms
74,880 KB
testcase_17 AC 101 ms
77,372 KB
testcase_18 AC 1,432 ms
137,360 KB
testcase_19 AC 214 ms
83,936 KB
testcase_20 AC 1,745 ms
150,156 KB
testcase_21 AC 1,622 ms
147,788 KB
testcase_22 AC 1,030 ms
123,792 KB
testcase_23 AC 626 ms
108,652 KB
testcase_24 AC 270 ms
88,064 KB
testcase_25 AC 1,455 ms
139,004 KB
testcase_26 AC 1,315 ms
131,908 KB
testcase_27 AC 1,473 ms
139,860 KB
testcase_28 AC 168 ms
82,684 KB
testcase_29 AC 1,354 ms
135,788 KB
testcase_30 AC 497 ms
97,612 KB
testcase_31 AC 1,635 ms
150,144 KB
testcase_32 AC 298 ms
88,960 KB
testcase_33 AC 439 ms
96,340 KB
testcase_34 AC 1,616 ms
150,528 KB
testcase_35 AC 1,624 ms
150,140 KB
testcase_36 AC 1,712 ms
151,816 KB
testcase_37 AC 818 ms
116,272 KB
testcase_38 AC 1,840 ms
146,948 KB
testcase_39 AC 1,730 ms
147,772 KB
testcase_40 AC 1,741 ms
146,768 KB
testcase_41 AC 1,445 ms
136,644 KB
testcase_42 AC 1,736 ms
147,020 KB
testcase_43 AC 1,488 ms
138,832 KB
testcase_44 AC 1,780 ms
147,160 KB
testcase_45 AC 1,277 ms
131,600 KB
testcase_46 AC 638 ms
104,372 KB
testcase_47 AC 1,727 ms
147,328 KB
testcase_48 AC 1,068 ms
145,840 KB
testcase_49 AC 1,628 ms
152,188 KB
testcase_50 AC 1,731 ms
152,324 KB
testcase_51 AC 1,738 ms
152,204 KB
testcase_52 AC 1,710 ms
152,196 KB
testcase_53 AC 263 ms
88,416 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