結果

問題 No.2248 max(C)-min(C)
ユーザー yabityabit
提出日時 2023-06-30 12:47:16
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,609 ms / 3,000 ms
コード長 614 bytes
コンパイル時間 562 ms
コンパイル使用メモリ 82,416 KB
実行使用メモリ 164,948 KB
最終ジャッジ日時 2024-07-07 01:01:16
合計ジャッジ時間 70,946 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 35 ms
54,620 KB
testcase_01 AC 34 ms
54,588 KB
testcase_02 AC 38 ms
55,568 KB
testcase_03 AC 98 ms
78,084 KB
testcase_04 AC 92 ms
77,056 KB
testcase_05 AC 75 ms
76,860 KB
testcase_06 AC 111 ms
79,024 KB
testcase_07 AC 120 ms
78,984 KB
testcase_08 AC 114 ms
79,224 KB
testcase_09 AC 113 ms
78,984 KB
testcase_10 AC 70 ms
76,620 KB
testcase_11 AC 115 ms
78,748 KB
testcase_12 AC 94 ms
77,952 KB
testcase_13 AC 104 ms
78,284 KB
testcase_14 AC 113 ms
78,860 KB
testcase_15 AC 115 ms
78,732 KB
testcase_16 AC 93 ms
78,192 KB
testcase_17 AC 113 ms
79,124 KB
testcase_18 AC 2,164 ms
154,708 KB
testcase_19 AC 309 ms
85,300 KB
testcase_20 AC 2,496 ms
163,136 KB
testcase_21 AC 2,377 ms
160,908 KB
testcase_22 AC 1,590 ms
138,460 KB
testcase_23 AC 1,005 ms
115,140 KB
testcase_24 AC 420 ms
91,692 KB
testcase_25 AC 2,229 ms
161,460 KB
testcase_26 AC 1,995 ms
146,356 KB
testcase_27 AC 2,225 ms
160,900 KB
testcase_28 AC 256 ms
83,316 KB
testcase_29 AC 2,082 ms
148,008 KB
testcase_30 AC 817 ms
101,688 KB
testcase_31 AC 2,503 ms
162,900 KB
testcase_32 AC 484 ms
91,088 KB
testcase_33 AC 742 ms
101,144 KB
testcase_34 AC 2,585 ms
164,480 KB
testcase_35 AC 2,582 ms
162,872 KB
testcase_36 AC 2,526 ms
162,560 KB
testcase_37 AC 1,263 ms
126,588 KB
testcase_38 AC 2,473 ms
159,512 KB
testcase_39 AC 2,522 ms
159,368 KB
testcase_40 AC 2,588 ms
159,336 KB
testcase_41 AC 2,157 ms
149,060 KB
testcase_42 AC 2,480 ms
158,444 KB
testcase_43 AC 2,261 ms
150,720 KB
testcase_44 AC 2,547 ms
159,232 KB
testcase_45 AC 1,890 ms
146,604 KB
testcase_46 AC 982 ms
107,720 KB
testcase_47 AC 2,479 ms
159,540 KB
testcase_48 AC 1,412 ms
157,764 KB
testcase_49 AC 2,577 ms
164,948 KB
testcase_50 AC 2,589 ms
164,588 KB
testcase_51 AC 2,534 ms
163,716 KB
testcase_52 AC 2,609 ms
163,268 KB
testcase_53 AC 425 ms
91,756 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from copy import deepcopy
import heapq
N = int(input())
A = list(map(int, input().split()))
B = list(map(int, input().split()))
que = []
for i,(a,b) in enumerate(zip(A,B)):
    que.append((a, i))
    que.append((b, i))
    que.append(((a+b)//2, i))
que2 = deepcopy(que)
que2.sort()
heapq.heapify(que)
ans = 10**18
r = 0
rs = [0]*N
for d, idx in que2:
    # print(d,idx,que,ans,rs)
    while que and r != N:
        e, idy = heapq.heappop(que)
        rs[idy] += 1
        if rs[idy] == 1:
            r += 1
    if r == N:
        ans = min(ans, e-d)
    rs[idx] -= 1
    if rs[idx] == 0:
        r -= 1
print(ans)
0