結果

問題 No.1767 BLUE to RED
ユーザー tktk_snsntktk_snsn
提出日時 2021-11-26 22:49:24
言語 Python3
(3.12.2 + numpy 1.26.4 + scipy 1.12.0)
結果
AC  
実行時間 518 ms / 2,000 ms
コード長 492 bytes
コンパイル時間 141 ms
コンパイル使用メモリ 12,672 KB
実行使用メモリ 42,604 KB
最終ジャッジ日時 2024-06-29 18:19:52
合計ジャッジ時間 8,306 ms
ジャッジサーバーID
(参考情報)
judge5 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 27 ms
10,752 KB
testcase_01 AC 27 ms
10,752 KB
testcase_02 AC 25 ms
10,624 KB
testcase_03 AC 24 ms
10,752 KB
testcase_04 AC 29 ms
10,752 KB
testcase_05 AC 25 ms
10,880 KB
testcase_06 AC 25 ms
10,880 KB
testcase_07 AC 26 ms
10,880 KB
testcase_08 AC 27 ms
11,008 KB
testcase_09 AC 299 ms
28,720 KB
testcase_10 AC 374 ms
32,968 KB
testcase_11 AC 315 ms
30,412 KB
testcase_12 AC 293 ms
28,644 KB
testcase_13 AC 396 ms
34,908 KB
testcase_14 AC 496 ms
42,460 KB
testcase_15 AC 498 ms
42,352 KB
testcase_16 AC 495 ms
42,352 KB
testcase_17 AC 505 ms
42,604 KB
testcase_18 AC 491 ms
42,476 KB
testcase_19 AC 518 ms
42,344 KB
testcase_20 AC 518 ms
42,476 KB
testcase_21 AC 518 ms
42,348 KB
testcase_22 AC 506 ms
42,352 KB
testcase_23 AC 494 ms
42,356 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

def F(L, R, B):
    if not B:
        return 0
    BL = [0] + [b - L for b in B]
    BR = [R - b for b in B] + [0]
    return min(l + r for l, r in zip(BL, BR))


inf = 10 ** 18
N, M = map(int, input().split())
A = [-inf] + list(map(int, input().split())) + [inf]
B = list(map(int, input().split())) + [inf + 10]

ans = 0
j = 0
for i in range(N+1):
    L = A[i]
    R = A[i+1]
    blue = []
    while L < B[j] < R:
        blue.append(B[j])
        j += 1
    ans += F(L, R, blue)

print(ans)
0