結果

問題 No.2248 max(C)-min(C)
ユーザー ikomaikoma
提出日時 2023-03-18 01:09:58
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,326 ms / 3,000 ms
コード長 682 bytes
コンパイル時間 337 ms
コンパイル使用メモリ 82,096 KB
実行使用メモリ 172,552 KB
最終ジャッジ日時 2024-09-18 12:48:11
合計ジャッジ時間 59,319 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
53,072 KB
testcase_01 AC 39 ms
53,060 KB
testcase_02 AC 40 ms
52,648 KB
testcase_03 AC 49 ms
64,920 KB
testcase_04 AC 49 ms
63,016 KB
testcase_05 AC 43 ms
55,280 KB
testcase_06 AC 64 ms
73,076 KB
testcase_07 AC 72 ms
76,132 KB
testcase_08 AC 74 ms
76,084 KB
testcase_09 AC 72 ms
75,996 KB
testcase_10 AC 44 ms
54,524 KB
testcase_11 AC 65 ms
74,164 KB
testcase_12 AC 49 ms
65,284 KB
testcase_13 AC 59 ms
69,368 KB
testcase_14 AC 74 ms
76,472 KB
testcase_15 AC 68 ms
73,884 KB
testcase_16 AC 50 ms
62,824 KB
testcase_17 AC 68 ms
73,384 KB
testcase_18 AC 1,711 ms
163,860 KB
testcase_19 AC 248 ms
84,256 KB
testcase_20 AC 1,955 ms
165,128 KB
testcase_21 AC 1,863 ms
169,580 KB
testcase_22 AC 1,271 ms
130,864 KB
testcase_23 AC 844 ms
128,728 KB
testcase_24 AC 348 ms
89,728 KB
testcase_25 AC 1,795 ms
165,280 KB
testcase_26 AC 1,604 ms
154,704 KB
testcase_27 AC 1,768 ms
165,696 KB
testcase_28 AC 210 ms
82,048 KB
testcase_29 AC 1,658 ms
161,272 KB
testcase_30 AC 659 ms
108,764 KB
testcase_31 AC 2,013 ms
165,112 KB
testcase_32 AC 384 ms
92,720 KB
testcase_33 AC 606 ms
106,692 KB
testcase_34 AC 2,011 ms
165,164 KB
testcase_35 AC 1,988 ms
165,740 KB
testcase_36 AC 1,965 ms
165,228 KB
testcase_37 AC 993 ms
139,012 KB
testcase_38 AC 2,134 ms
171,032 KB
testcase_39 AC 2,125 ms
170,676 KB
testcase_40 AC 2,122 ms
170,580 KB
testcase_41 AC 1,809 ms
153,564 KB
testcase_42 AC 2,156 ms
170,820 KB
testcase_43 AC 1,885 ms
156,172 KB
testcase_44 AC 2,172 ms
170,696 KB
testcase_45 AC 1,671 ms
140,740 KB
testcase_46 AC 873 ms
117,672 KB
testcase_47 AC 2,160 ms
168,844 KB
testcase_48 AC 859 ms
166,132 KB
testcase_49 AC 2,246 ms
172,552 KB
testcase_50 AC 2,274 ms
172,188 KB
testcase_51 AC 2,294 ms
172,188 KB
testcase_52 AC 2,326 ms
172,432 KB
testcase_53 AC 372 ms
90,316 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from heapq import _heappop_max,_heapify_max,_siftdown_max
heappop_max = _heappop_max;heapify_max = _heapify_max
def heappush_max(heap:list,item): heap.append(item); _siftdown_max(heap, 0, len(heap)-1)
INF=1<<60
N=int(input())
A=list(map(int,input().split()))
B=list(map(int,input().split()))
ans=INF
X=[]
Y=[]
heap=[]
for i,(a,b) in enumerate(zip(A,B)):
    if a>b:a,b=b,a
    m=a+b>>1
    X.append([b,m])
    heap.append(a)
    Y.append((a,i))
    Y.append((b,i))
    Y.append((m,i))
Y.sort()
heapify_max(heap)

for x,i in Y:
    mx=heap[0]
    ans = min(ans, mx-x)
    if X[i]:
        heappush_max(heap, X[i].pop())
    else:break
print(ans)
0