結果

問題 No.2248 max(C)-min(C)
ユーザー flygonflygon
提出日時 2023-03-17 23:03:02
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,510 ms / 3,000 ms
コード長 977 bytes
コンパイル時間 238 ms
コンパイル使用メモリ 82,544 KB
実行使用メモリ 248,452 KB
最終ジャッジ日時 2024-09-18 12:10:27
合計ジャッジ時間 66,029 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 45 ms
56,052 KB
testcase_01 AC 44 ms
54,748 KB
testcase_02 AC 43 ms
55,540 KB
testcase_03 AC 67 ms
72,516 KB
testcase_04 AC 61 ms
68,768 KB
testcase_05 AC 57 ms
66,188 KB
testcase_06 AC 82 ms
77,392 KB
testcase_07 AC 83 ms
77,144 KB
testcase_08 AC 84 ms
77,316 KB
testcase_09 AC 84 ms
77,296 KB
testcase_10 AC 56 ms
65,196 KB
testcase_11 AC 84 ms
77,196 KB
testcase_12 AC 68 ms
72,576 KB
testcase_13 AC 77 ms
77,008 KB
testcase_14 AC 83 ms
77,352 KB
testcase_15 AC 84 ms
77,252 KB
testcase_16 AC 66 ms
72,956 KB
testcase_17 AC 82 ms
76,920 KB
testcase_18 AC 2,111 ms
226,656 KB
testcase_19 AC 261 ms
97,400 KB
testcase_20 AC 2,472 ms
248,452 KB
testcase_21 AC 2,335 ms
241,700 KB
testcase_22 AC 1,584 ms
207,384 KB
testcase_23 AC 954 ms
157,180 KB
testcase_24 AC 375 ms
98,944 KB
testcase_25 AC 2,259 ms
237,852 KB
testcase_26 AC 1,989 ms
216,544 KB
testcase_27 AC 2,219 ms
237,352 KB
testcase_28 AC 220 ms
91,504 KB
testcase_29 AC 2,040 ms
222,700 KB
testcase_30 AC 750 ms
137,168 KB
testcase_31 AC 2,468 ms
248,196 KB
testcase_32 AC 414 ms
104,224 KB
testcase_33 AC 692 ms
128,508 KB
testcase_34 AC 2,485 ms
248,200 KB
testcase_35 AC 2,456 ms
247,684 KB
testcase_36 AC 2,510 ms
247,680 KB
testcase_37 AC 1,206 ms
179,408 KB
testcase_38 AC 2,355 ms
232,560 KB
testcase_39 AC 2,463 ms
232,820 KB
testcase_40 AC 2,356 ms
232,488 KB
testcase_41 AC 1,973 ms
204,808 KB
testcase_42 AC 2,316 ms
233,052 KB
testcase_43 AC 2,041 ms
205,996 KB
testcase_44 AC 2,398 ms
232,448 KB
testcase_45 AC 1,773 ms
212,404 KB
testcase_46 AC 872 ms
146,376 KB
testcase_47 AC 2,341 ms
232,816 KB
testcase_48 AC 408 ms
159,900 KB
testcase_49 AC 2,215 ms
243,756 KB
testcase_50 AC 2,248 ms
244,156 KB
testcase_51 AC 2,220 ms
244,148 KB
testcase_52 AC 2,233 ms
243,952 KB
testcase_53 AC 345 ms
98,872 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys
sys.setrecursionlimit(5*10**5)
input = sys.stdin.readline
from collections import defaultdict, deque, Counter
from heapq import heappop, heappush
from bisect import bisect_left, bisect_right
from math import gcd

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)]
all = [(a[i], i) for i in range(n)] +  [(b[i], i) for i in range(n)]  +  [(c[i], i) for i in range(n)] 
s = sorted(list(set(a + b + c)))
all.sort()

m = len(s)
r = 0
ll = 0
rr = 0
d = defaultdict(int)
now = 0
ans = float("inf")
for l in range(m):
    while r < m and now != n:
        while rr < 3*n and all[rr][0] == s[r]:
            d[all[rr][1]] += 1
            now += (d[all[rr][1]] == 1)
            rr += 1
        r += 1
    if now == n:
        ans = min(ans, s[r-1] - s[l])
    while ll < 3*n and all[ll][0] == s[l]:
        d[all[ll][1]] -= 1
        now -=(d[all[ll][1]] == 0)
        ll += 1

print(ans)
    




0