結果

問題 No.2248 max(C)-min(C)
ユーザー flygonflygon
提出日時 2023-03-17 23:06:23
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,977 ms / 3,000 ms
コード長 1,006 bytes
コンパイル時間 290 ms
コンパイル使用メモリ 82,560 KB
実行使用メモリ 248,712 KB
最終ジャッジ日時 2024-09-18 12:13:40
合計ジャッジ時間 52,964 ms
ジャッジサーバーID
(参考情報)
judge1 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 44 ms
54,504 KB
testcase_01 AC 40 ms
54,784 KB
testcase_02 AC 41 ms
54,400 KB
testcase_03 AC 55 ms
69,120 KB
testcase_04 AC 52 ms
66,176 KB
testcase_05 AC 48 ms
64,256 KB
testcase_06 AC 75 ms
77,056 KB
testcase_07 AC 76 ms
77,440 KB
testcase_08 AC 78 ms
77,184 KB
testcase_09 AC 77 ms
77,184 KB
testcase_10 AC 52 ms
64,000 KB
testcase_11 AC 76 ms
77,568 KB
testcase_12 AC 57 ms
70,272 KB
testcase_13 AC 64 ms
73,984 KB
testcase_14 AC 74 ms
77,440 KB
testcase_15 AC 74 ms
77,880 KB
testcase_16 AC 59 ms
69,504 KB
testcase_17 AC 73 ms
77,300 KB
testcase_18 AC 1,813 ms
226,780 KB
testcase_19 AC 226 ms
97,740 KB
testcase_20 AC 1,873 ms
248,712 KB
testcase_21 AC 1,842 ms
242,332 KB
testcase_22 AC 1,213 ms
207,700 KB
testcase_23 AC 768 ms
157,368 KB
testcase_24 AC 308 ms
99,756 KB
testcase_25 AC 1,726 ms
238,500 KB
testcase_26 AC 1,549 ms
216,756 KB
testcase_27 AC 1,690 ms
237,668 KB
testcase_28 AC 183 ms
92,056 KB
testcase_29 AC 1,573 ms
222,760 KB
testcase_30 AC 615 ms
137,420 KB
testcase_31 AC 1,903 ms
248,328 KB
testcase_32 AC 356 ms
104,704 KB
testcase_33 AC 564 ms
128,896 KB
testcase_34 AC 1,977 ms
248,444 KB
testcase_35 AC 1,934 ms
247,808 KB
testcase_36 AC 1,947 ms
247,744 KB
testcase_37 AC 974 ms
179,200 KB
testcase_38 AC 1,887 ms
233,068 KB
testcase_39 AC 1,882 ms
232,824 KB
testcase_40 AC 1,860 ms
232,904 KB
testcase_41 AC 1,578 ms
204,840 KB
testcase_42 AC 1,841 ms
232,868 KB
testcase_43 AC 1,635 ms
206,760 KB
testcase_44 AC 1,849 ms
232,728 KB
testcase_45 AC 1,385 ms
212,788 KB
testcase_46 AC 726 ms
146,772 KB
testcase_47 AC 1,860 ms
232,936 KB
testcase_48 AC 361 ms
159,824 KB
testcase_49 AC 1,857 ms
243,888 KB
testcase_50 AC 1,841 ms
244,400 KB
testcase_51 AC 1,823 ms
244,424 KB
testcase_52 AC 1,789 ms
244,644 KB
testcase_53 AC 304 ms
99,072 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])
    if now < n: break
    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