結果

問題 No.2248 max(C)-min(C)
ユーザー yabityabit
提出日時 2023-06-30 12:46:35
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,847 ms / 3,000 ms
コード長 614 bytes
コンパイル時間 179 ms
コンパイル使用メモリ 82,476 KB
実行使用メモリ 164,892 KB
最終ジャッジ日時 2024-07-07 00:59:48
合計ジャッジ時間 73,423 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 37 ms
54,220 KB
testcase_01 AC 35 ms
55,228 KB
testcase_02 AC 35 ms
54,920 KB
testcase_03 AC 95 ms
77,704 KB
testcase_04 AC 93 ms
76,924 KB
testcase_05 AC 82 ms
76,856 KB
testcase_06 AC 110 ms
78,856 KB
testcase_07 AC 116 ms
78,848 KB
testcase_08 AC 116 ms
78,616 KB
testcase_09 AC 114 ms
78,608 KB
testcase_10 AC 71 ms
76,760 KB
testcase_11 AC 115 ms
78,684 KB
testcase_12 AC 94 ms
77,600 KB
testcase_13 AC 104 ms
78,596 KB
testcase_14 AC 114 ms
78,488 KB
testcase_15 AC 122 ms
78,356 KB
testcase_16 AC 98 ms
77,432 KB
testcase_17 AC 118 ms
78,740 KB
testcase_18 AC 2,155 ms
155,004 KB
testcase_19 AC 305 ms
85,480 KB
testcase_20 AC 2,476 ms
163,512 KB
testcase_21 AC 2,333 ms
161,872 KB
testcase_22 AC 1,577 ms
138,568 KB
testcase_23 AC 1,002 ms
115,008 KB
testcase_24 AC 421 ms
91,680 KB
testcase_25 AC 2,249 ms
161,456 KB
testcase_26 AC 1,978 ms
146,228 KB
testcase_27 AC 2,183 ms
160,796 KB
testcase_28 AC 254 ms
82,908 KB
testcase_29 AC 2,052 ms
148,060 KB
testcase_30 AC 789 ms
101,420 KB
testcase_31 AC 2,477 ms
162,848 KB
testcase_32 AC 467 ms
91,044 KB
testcase_33 AC 721 ms
100,928 KB
testcase_34 AC 2,482 ms
164,088 KB
testcase_35 AC 2,549 ms
162,832 KB
testcase_36 AC 2,521 ms
162,800 KB
testcase_37 AC 1,211 ms
126,556 KB
testcase_38 AC 2,469 ms
159,596 KB
testcase_39 AC 2,471 ms
159,408 KB
testcase_40 AC 2,495 ms
159,488 KB
testcase_41 AC 2,171 ms
149,004 KB
testcase_42 AC 2,531 ms
158,164 KB
testcase_43 AC 2,193 ms
150,756 KB
testcase_44 AC 2,509 ms
158,872 KB
testcase_45 AC 1,899 ms
146,328 KB
testcase_46 AC 965 ms
107,844 KB
testcase_47 AC 2,568 ms
159,136 KB
testcase_48 AC 1,459 ms
157,464 KB
testcase_49 AC 2,847 ms
164,656 KB
testcase_50 AC 2,766 ms
164,892 KB
testcase_51 AC 2,672 ms
163,596 KB
testcase_52 AC 2,681 ms
162,692 KB
testcase_53 AC 436 ms
91,476 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