結果

問題 No.2248 max(C)-min(C)
ユーザー hir355hir355
提出日時 2023-03-17 22:41:30
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 2,317 ms / 3,000 ms
コード長 646 bytes
コンパイル時間 379 ms
コンパイル使用メモリ 81,780 KB
実行使用メモリ 145,956 KB
最終ジャッジ日時 2024-09-18 11:50:08
合計ジャッジ時間 32,906 ms
ジャッジサーバーID
(参考情報)
judge5 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 43 ms
52,352 KB
testcase_01 AC 43 ms
52,864 KB
testcase_02 AC 43 ms
52,224 KB
testcase_03 AC 52 ms
60,288 KB
testcase_04 AC 48 ms
59,392 KB
testcase_05 AC 45 ms
58,240 KB
testcase_06 AC 61 ms
65,664 KB
testcase_07 AC 63 ms
65,792 KB
testcase_08 AC 64 ms
66,944 KB
testcase_09 AC 64 ms
66,048 KB
testcase_10 AC 47 ms
58,112 KB
testcase_11 AC 59 ms
66,816 KB
testcase_12 AC 48 ms
59,920 KB
testcase_13 AC 55 ms
64,868 KB
testcase_14 AC 58 ms
65,948 KB
testcase_15 AC 63 ms
66,944 KB
testcase_16 AC 48 ms
59,648 KB
testcase_17 AC 60 ms
66,048 KB
testcase_18 AC 239 ms
107,628 KB
testcase_19 AC 78 ms
80,212 KB
testcase_20 AC 266 ms
131,960 KB
testcase_21 AC 265 ms
132,144 KB
testcase_22 AC 196 ms
102,180 KB
testcase_23 AC 154 ms
97,696 KB
testcase_24 AC 93 ms
83,408 KB
testcase_25 AC 255 ms
107,332 KB
testcase_26 AC 258 ms
105,296 KB
testcase_27 AC 248 ms
107,656 KB
testcase_28 AC 78 ms
78,208 KB
testcase_29 AC 256 ms
107,824 KB
testcase_30 AC 138 ms
94,208 KB
testcase_31 AC 288 ms
132,292 KB
testcase_32 AC 97 ms
84,888 KB
testcase_33 AC 130 ms
92,160 KB
testcase_34 AC 300 ms
132,144 KB
testcase_35 AC 293 ms
132,276 KB
testcase_36 AC 286 ms
132,088 KB
testcase_37 AC 167 ms
98,192 KB
testcase_38 AC 1,555 ms
127,464 KB
testcase_39 AC 1,575 ms
127,828 KB
testcase_40 AC 1,569 ms
127,420 KB
testcase_41 AC 1,303 ms
122,344 KB
testcase_42 AC 1,608 ms
127,684 KB
testcase_43 AC 1,385 ms
123,812 KB
testcase_44 AC 1,560 ms
128,348 KB
testcase_45 AC 1,206 ms
117,524 KB
testcase_46 AC 606 ms
99,632 KB
testcase_47 AC 1,582 ms
127,940 KB
testcase_48 AC 1,320 ms
140,472 KB
testcase_49 AC 2,317 ms
145,372 KB
testcase_50 AC 2,309 ms
145,648 KB
testcase_51 AC 2,219 ms
145,756 KB
testcase_52 AC 2,260 ms
145,956 KB
testcase_53 AC 314 ms
85,632 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import heapq
n = int(input())
a = list(map(int, input().split()))
b = list(map(int, input().split()))
for i in range(n):
    if a[i] > b[i]:
        a[i], b[i] = b[i], a[i]
hq = []
for i in range(n):
    heapq.heappush(hq, (a[i], i, 0))
ma = max(a)
ans = max(a) - min(a)
for _ in range(n * 2):
    x, i, j = heapq.heappop(hq)
    if ans > ma - x:
        ans = ma - x
    if j == 0:
        heapq.heappush(hq, ((a[i] + b[i]) // 2, i, 1))
        if ma < (a[i] + b[i]) // 2:
            ma = (a[i] + b[i]) // 2
    elif j == 1:
        heapq.heappush(hq, (b[i], i, 2))
        if ma < b[i]:
            ma = b[i]
    else:
        break
print(ans)
0