結果

問題 No.2248 max(C)-min(C)
ユーザー nephrologistnephrologist
提出日時 2023-03-20 10:03:49
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 1,092 ms / 3,000 ms
コード長 1,631 bytes
コンパイル時間 209 ms
コンパイル使用メモリ 82,608 KB
実行使用メモリ 226,916 KB
最終ジャッジ日時 2024-09-18 14:00:46
合計ジャッジ時間 22,194 ms
ジャッジサーバーID
(参考情報)
judge3 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,608 KB
testcase_01 AC 39 ms
52,480 KB
testcase_02 AC 38 ms
52,352 KB
testcase_03 AC 53 ms
63,616 KB
testcase_04 AC 45 ms
61,056 KB
testcase_05 AC 41 ms
53,760 KB
testcase_06 AC 66 ms
69,888 KB
testcase_07 AC 66 ms
70,400 KB
testcase_08 AC 75 ms
72,448 KB
testcase_09 AC 68 ms
69,632 KB
testcase_10 AC 40 ms
53,632 KB
testcase_11 AC 69 ms
71,424 KB
testcase_12 AC 53 ms
63,744 KB
testcase_13 AC 70 ms
68,352 KB
testcase_14 AC 75 ms
70,912 KB
testcase_15 AC 70 ms
70,784 KB
testcase_16 AC 55 ms
63,360 KB
testcase_17 AC 69 ms
70,400 KB
testcase_18 AC 242 ms
115,100 KB
testcase_19 AC 110 ms
80,000 KB
testcase_20 AC 266 ms
118,912 KB
testcase_21 AC 267 ms
119,008 KB
testcase_22 AC 214 ms
107,264 KB
testcase_23 AC 189 ms
98,384 KB
testcase_24 AC 137 ms
82,432 KB
testcase_25 AC 288 ms
115,344 KB
testcase_26 AC 232 ms
109,920 KB
testcase_27 AC 265 ms
115,632 KB
testcase_28 AC 105 ms
78,464 KB
testcase_29 AC 247 ms
114,664 KB
testcase_30 AC 148 ms
92,544 KB
testcase_31 AC 278 ms
119,176 KB
testcase_32 AC 124 ms
83,968 KB
testcase_33 AC 147 ms
90,368 KB
testcase_34 AC 289 ms
119,940 KB
testcase_35 AC 272 ms
119,308 KB
testcase_36 AC 264 ms
119,180 KB
testcase_37 AC 193 ms
105,600 KB
testcase_38 AC 981 ms
183,500 KB
testcase_39 AC 930 ms
183,356 KB
testcase_40 AC 981 ms
180,808 KB
testcase_41 AC 849 ms
163,596 KB
testcase_42 AC 972 ms
185,020 KB
testcase_43 AC 871 ms
171,220 KB
testcase_44 AC 928 ms
183,232 KB
testcase_45 AC 736 ms
160,784 KB
testcase_46 AC 467 ms
108,688 KB
testcase_47 AC 1,003 ms
185,032 KB
testcase_48 AC 932 ms
226,868 KB
testcase_49 AC 1,092 ms
226,396 KB
testcase_50 AC 1,025 ms
225,252 KB
testcase_51 AC 1,039 ms
226,916 KB
testcase_52 AC 1,061 ms
225,192 KB
testcase_53 AC 258 ms
94,004 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import sys

input = sys.stdin.buffer.readline


from heapq import heappop, heappush

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

bigpq = []
smallpq = []


# initialize
# a,b,half(a,b)の順に3*i, 3*i+1, 3*i+2のidxをふることにする
for i in range(n):
    a, b = A[i], B[i]
    if a > b:
        heappush(bigpq, (-b, 3 * i + 1))
        heappush(smallpq, (b, 3 * i + 1))
    else:
        heappush(bigpq, (-a, 3 * i))
        heappush(smallpq, (a, 3 * i))

cnt = [0] * n
ans = 1 << 100
finished = set()
while True:
    # print(ans)
    # print(smallpq)
    # print(bigpq)

    now_minimum, smallidx = heappop(smallpq)

    # smallidxのものはbiggestとして使えない
    finished.add(smallidx)
    # 使用済みbigpqだとアウト
    while bigpq:
        if bigpq[0][1] in finished:
            heappop(bigpq)
        else:
            break

    # 使える最大候補がない
    if not bigpq:
        break

    biggest, bigidx = bigpq[0]
    biggest *= -1

    ans = min(ans, biggest - now_minimum)
    biggest *= -1
    # smallidxと同じiのもので、次のものを追加する。
    idx = smallidx // 3
    cnt[idx] += 1
    a, b = A[idx], B[idx]
    if cnt[idx] == 1:
        v = (a + b) // 2
        heappush(bigpq, (-v, 3 * idx + 2))
        heappush(smallpq, (v, 3 * idx + 2))
    elif cnt[idx] == 2:
        if a > b:
            heappush(bigpq, (-a, 3 * idx))
            heappush(smallpq, (a, 3 * idx))
        else:
            heappush(bigpq, (-b, 3 * idx + 1))
            heappush(smallpq, (b, 3 * idx + 1))
    else:
        break
print(ans)
0