結果

問題 No.2248 max(C)-min(C)
ユーザー ntudantuda
提出日時 2023-03-19 09:05:08
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,862 ms / 3,000 ms
コード長 672 bytes
コンパイル時間 423 ms
コンパイル使用メモリ 82,032 KB
実行使用メモリ 238,056 KB
最終ジャッジ日時 2024-09-25 17:56:53
合計ジャッジ時間 44,901 ms
ジャッジサーバーID
(参考情報)
judge3 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,480 KB
testcase_01 AC 39 ms
52,992 KB
testcase_02 AC 39 ms
52,480 KB
testcase_03 AC 50 ms
62,080 KB
testcase_04 AC 46 ms
60,032 KB
testcase_05 AC 41 ms
53,376 KB
testcase_06 AC 60 ms
68,736 KB
testcase_07 AC 66 ms
71,040 KB
testcase_08 AC 65 ms
70,656 KB
testcase_09 AC 60 ms
68,736 KB
testcase_10 AC 41 ms
53,248 KB
testcase_11 AC 66 ms
71,040 KB
testcase_12 AC 49 ms
62,336 KB
testcase_13 AC 59 ms
67,968 KB
testcase_14 AC 61 ms
68,864 KB
testcase_15 AC 65 ms
70,784 KB
testcase_16 AC 49 ms
62,464 KB
testcase_17 AC 60 ms
68,736 KB
testcase_18 AC 529 ms
185,228 KB
testcase_19 AC 133 ms
94,164 KB
testcase_20 AC 599 ms
208,200 KB
testcase_21 AC 578 ms
203,812 KB
testcase_22 AC 456 ms
153,220 KB
testcase_23 AC 318 ms
126,560 KB
testcase_24 AC 168 ms
96,724 KB
testcase_25 AC 559 ms
193,288 KB
testcase_26 AC 505 ms
177,688 KB
testcase_27 AC 577 ms
193,240 KB
testcase_28 AC 138 ms
89,600 KB
testcase_29 AC 584 ms
180,008 KB
testcase_30 AC 253 ms
114,300 KB
testcase_31 AC 583 ms
203,828 KB
testcase_32 AC 170 ms
98,136 KB
testcase_33 AC 240 ms
110,736 KB
testcase_34 AC 612 ms
209,544 KB
testcase_35 AC 603 ms
203,780 KB
testcase_36 AC 582 ms
208,732 KB
testcase_37 AC 341 ms
136,696 KB
testcase_38 AC 1,946 ms
211,680 KB
testcase_39 AC 1,979 ms
211,980 KB
testcase_40 AC 1,961 ms
210,444 KB
testcase_41 AC 1,693 ms
192,364 KB
testcase_42 AC 1,961 ms
210,644 KB
testcase_43 AC 1,740 ms
193,944 KB
testcase_44 AC 1,941 ms
211,412 KB
testcase_45 AC 1,483 ms
181,160 KB
testcase_46 AC 791 ms
121,400 KB
testcase_47 AC 1,959 ms
210,684 KB
testcase_48 AC 1,464 ms
186,740 KB
testcase_49 AC 2,858 ms
237,792 KB
testcase_50 AC 2,862 ms
238,056 KB
testcase_51 AC 2,770 ms
237,016 KB
testcase_52 AC 2,844 ms
237,452 KB
testcase_53 AC 405 ms
97,152 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from heapq import *

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

D = set()
E = []
Q = []
cmax = 0
for i in range(N):
    a = A[i]
    b = B[i]
    if a > b:
        a, b = b, a
    c = (a + b) // 2
    d = (a, (a + b) // 2, b)
    E.append(d)
    D |= set(d)
    Q.append((a, i, 0))
    if cmax < a:
        cmax = a
D = sorted(list(D))
heapify(Q)

ans = 10 ** 9
for d in D:
    while d > Q[0][0]:
        _, i, j = heappop(Q)
        if j == 2:
            print(ans)
            exit()
        add = E[i][j + 1]
        if cmax < add:
            cmax = add
        heappush(Q, (add, i, j + 1))
    ans = min(ans, cmax - d)
0