結果

問題 No.1767 BLUE to RED
ユーザー rlangevinrlangevin
提出日時 2023-02-20 22:17:37
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 385 ms / 2,000 ms
コード長 656 bytes
コンパイル時間 213 ms
コンパイル使用メモリ 82,176 KB
実行使用メモリ 155,276 KB
最終ジャッジ日時 2024-07-21 12:22:51
合計ジャッジ時間 8,428 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 39 ms
52,632 KB
testcase_01 AC 39 ms
52,568 KB
testcase_02 AC 40 ms
52,748 KB
testcase_03 AC 40 ms
52,340 KB
testcase_04 AC 41 ms
54,684 KB
testcase_05 AC 45 ms
59,544 KB
testcase_06 AC 40 ms
53,356 KB
testcase_07 AC 50 ms
62,916 KB
testcase_08 AC 56 ms
65,580 KB
testcase_09 AC 248 ms
116,300 KB
testcase_10 AC 304 ms
124,396 KB
testcase_11 AC 280 ms
125,192 KB
testcase_12 AC 255 ms
116,604 KB
testcase_13 AC 325 ms
152,784 KB
testcase_14 AC 367 ms
153,388 KB
testcase_15 AC 360 ms
153,244 KB
testcase_16 AC 376 ms
153,388 KB
testcase_17 AC 372 ms
153,136 KB
testcase_18 AC 368 ms
152,984 KB
testcase_19 AC 369 ms
153,536 KB
testcase_20 AC 385 ms
153,264 KB
testcase_21 AC 371 ms
155,276 KB
testcase_22 AC 373 ms
153,636 KB
testcase_23 AC 369 ms
153,388 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import *

def f(L):
    if L == []:
        return 0
    n = len(L)
    ind = bisect_right(A, L[0])
    pre = A[ind - 1]
    nex = A[ind]
    minv = min(nex - L[0], L[-1] - pre)
    for i in range(n - 1):
        val = L[i] - pre + nex - L[i + 1]
        minv = min(minv, val)
    return minv

N, M = map(int, input().split())
inf = 10 ** 18
A = [-inf] + list(map(int, input().split())) + [inf]
B = list(map(int, input().split()))
D = []
for a in A:
    D.append((a, 1))
for b in B:
    D.append((b, 0))
D.sort()

lst = []
ans = 0
for v, flag in D:
    if flag:
        ans += f(lst)
        lst = []
    else:
        lst.append(v)

print(ans)
0