結果

問題 No.2248 max(C)-min(C)
ユーザー roarisroaris
提出日時 2023-03-17 23:50:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 960 ms / 3,000 ms
コード長 679 bytes
コンパイル時間 332 ms
コンパイル使用メモリ 82,004 KB
実行使用メモリ 152,280 KB
最終ジャッジ日時 2024-09-18 12:39:42
合計ジャッジ時間 18,833 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 40 ms
53,888 KB
testcase_01 AC 38 ms
54,144 KB
testcase_02 AC 42 ms
54,016 KB
testcase_03 AC 50 ms
63,360 KB
testcase_04 AC 49 ms
61,696 KB
testcase_05 AC 45 ms
54,784 KB
testcase_06 AC 59 ms
69,248 KB
testcase_07 AC 62 ms
69,248 KB
testcase_08 AC 56 ms
70,656 KB
testcase_09 AC 58 ms
69,888 KB
testcase_10 AC 41 ms
55,040 KB
testcase_11 AC 55 ms
69,760 KB
testcase_12 AC 46 ms
63,232 KB
testcase_13 AC 55 ms
68,736 KB
testcase_14 AC 56 ms
69,888 KB
testcase_15 AC 60 ms
71,152 KB
testcase_16 AC 44 ms
62,464 KB
testcase_17 AC 58 ms
70,016 KB
testcase_18 AC 288 ms
147,112 KB
testcase_19 AC 101 ms
83,712 KB
testcase_20 AC 341 ms
151,128 KB
testcase_21 AC 313 ms
151,984 KB
testcase_22 AC 251 ms
125,096 KB
testcase_23 AC 184 ms
106,380 KB
testcase_24 AC 102 ms
88,424 KB
testcase_25 AC 297 ms
146,864 KB
testcase_26 AC 288 ms
127,032 KB
testcase_27 AC 288 ms
146,696 KB
testcase_28 AC 79 ms
81,408 KB
testcase_29 AC 285 ms
146,384 KB
testcase_30 AC 158 ms
97,276 KB
testcase_31 AC 333 ms
152,280 KB
testcase_32 AC 118 ms
89,600 KB
testcase_33 AC 145 ms
91,136 KB
testcase_34 AC 352 ms
151,888 KB
testcase_35 AC 352 ms
151,392 KB
testcase_36 AC 329 ms
151,252 KB
testcase_37 AC 203 ms
116,092 KB
testcase_38 AC 707 ms
136,136 KB
testcase_39 AC 699 ms
135,872 KB
testcase_40 AC 699 ms
136,008 KB
testcase_41 AC 652 ms
132,960 KB
testcase_42 AC 747 ms
135,768 KB
testcase_43 AC 631 ms
131,736 KB
testcase_44 AC 693 ms
135,804 KB
testcase_45 AC 547 ms
130,380 KB
testcase_46 AC 336 ms
101,420 KB
testcase_47 AC 697 ms
136,264 KB
testcase_48 AC 507 ms
136,236 KB
testcase_49 AC 912 ms
149,996 KB
testcase_50 AC 893 ms
149,888 KB
testcase_51 AC 892 ms
151,024 KB
testcase_52 AC 960 ms
150,128 KB
testcase_53 AC 199 ms
88,272 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
input = sys.stdin.readline
from collections import *
from heapq import *

N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
C = [(A[i]+B[i])//2 for i in range(N)]
ms = A+B+C
ms.sort()
L = [[A[i], B[i], C[i]] for i in range(N)]

for i in range(N):
    L[i].sort(reverse=True)
    
pq = []
M = 0

for i in range(N):
    M = max(M, L[i][-1])
    heappush(pq, (L[i].pop(), i))

ans = 10**18

for m in ms:
    while pq[0][0]<m:
        _, i = heappop(pq)
        
        if len(L[i])==0:
            exit(print(ans))
        
        M = max(M, L[i][-1])
        heappush(pq, (L[i].pop(), i))
    
    ans = min(ans, M-m)

print(ans)
0