結果

問題 No.2248 max(C)-min(C)
ユーザー titiatitia
提出日時 2023-03-17 21:59:30
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 2,990 ms / 3,000 ms
コード長 544 bytes
コンパイル時間 172 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 57,468 KB
最終ジャッジ日時 2024-09-18 10:55:23
合計ジャッジ時間 80,356 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,880 KB
testcase_01 AC 26 ms
10,624 KB
testcase_02 AC 27 ms
10,880 KB
testcase_03 AC 35 ms
10,752 KB
testcase_04 AC 32 ms
10,880 KB
testcase_05 AC 30 ms
10,880 KB
testcase_06 AC 42 ms
11,136 KB
testcase_07 AC 46 ms
11,264 KB
testcase_08 AC 45 ms
11,392 KB
testcase_09 AC 47 ms
11,136 KB
testcase_10 AC 28 ms
10,880 KB
testcase_11 AC 47 ms
11,264 KB
testcase_12 AC 38 ms
11,008 KB
testcase_13 AC 43 ms
11,264 KB
testcase_14 AC 47 ms
11,264 KB
testcase_15 AC 46 ms
11,136 KB
testcase_16 AC 33 ms
10,880 KB
testcase_17 AC 44 ms
11,264 KB
testcase_18 AC 2,432 ms
46,020 KB
testcase_19 AC 252 ms
15,272 KB
testcase_20 AC 2,883 ms
52,524 KB
testcase_21 AC 2,686 ms
50,392 KB
testcase_22 AC 1,803 ms
37,544 KB
testcase_23 AC 1,123 ms
28,040 KB
testcase_24 AC 385 ms
17,600 KB
testcase_25 AC 2,634 ms
47,728 KB
testcase_26 AC 2,349 ms
43,448 KB
testcase_27 AC 2,561 ms
47,184 KB
testcase_28 AC 207 ms
14,672 KB
testcase_29 AC 2,412 ms
45,492 KB
testcase_30 AC 832 ms
24,364 KB
testcase_31 AC 2,966 ms
52,544 KB
testcase_32 AC 452 ms
18,452 KB
testcase_33 AC 764 ms
23,272 KB
testcase_34 AC 2,877 ms
52,256 KB
testcase_35 AC 2,888 ms
52,524 KB
testcase_36 AC 2,950 ms
52,272 KB
testcase_37 AC 1,368 ms
31,740 KB
testcase_38 AC 2,904 ms
52,452 KB
testcase_39 AC 2,990 ms
52,324 KB
testcase_40 AC 2,903 ms
52,396 KB
testcase_41 AC 2,432 ms
46,444 KB
testcase_42 AC 2,932 ms
52,320 KB
testcase_43 AC 2,934 ms
47,636 KB
testcase_44 AC 2,937 ms
52,336 KB
testcase_45 AC 2,160 ms
43,836 KB
testcase_46 AC 1,206 ms
27,936 KB
testcase_47 AC 2,911 ms
52,572 KB
testcase_48 AC 2,168 ms
47,780 KB
testcase_49 AC 2,862 ms
57,468 KB
testcase_50 AC 2,900 ms
57,196 KB
testcase_51 AC 2,949 ms
57,320 KB
testcase_52 AC 2,921 ms
57,452 KB
testcase_53 AC 372 ms
18,640 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

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


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

X=[]

for i in range(N):
    Y=[A[i],B[i],(A[i]+B[i])//2]
    Y.sort()
    X.append(tuple(Y))

ANS=1<<31

MAX=0
for x in X:
    MAX=max(MAX,x[0])

X.sort()
MIN=1<<31

while X:
    k=list(heappop(X))

    ANS=min(ANS,MAX-min(MIN,k[0]))

    u=k.pop(0)

    if len(k)==0:
        MIN=min(MIN,u)
        
    else:
        heappush(X,tuple(k))
        MAX=max(MAX,k[0])

print(ANS)
0