結果

問題 No.1767 BLUE to RED
ユーザー gr1msl3ygr1msl3y
提出日時 2021-11-26 22:59:51
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 240 ms / 2,000 ms
コード長 601 bytes
コンパイル時間 142 ms
コンパイル使用メモリ 82,556 KB
実行使用メモリ 140,464 KB
最終ジャッジ日時 2024-06-29 18:25:16
合計ジャッジ時間 4,870 ms
ジャッジサーバーID
(参考情報)
judge1 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 31 ms
53,196 KB
testcase_01 AC 35 ms
53,688 KB
testcase_02 AC 34 ms
53,008 KB
testcase_03 AC 34 ms
53,436 KB
testcase_04 AC 37 ms
60,224 KB
testcase_05 AC 39 ms
61,544 KB
testcase_06 AC 32 ms
53,348 KB
testcase_07 AC 39 ms
60,872 KB
testcase_08 AC 43 ms
63,480 KB
testcase_09 AC 149 ms
109,628 KB
testcase_10 AC 173 ms
113,644 KB
testcase_11 AC 165 ms
114,720 KB
testcase_12 AC 152 ms
109,408 KB
testcase_13 AC 195 ms
132,480 KB
testcase_14 AC 238 ms
140,192 KB
testcase_15 AC 227 ms
140,332 KB
testcase_16 AC 233 ms
140,208 KB
testcase_17 AC 227 ms
140,076 KB
testcase_18 AC 233 ms
140,088 KB
testcase_19 AC 225 ms
140,396 KB
testcase_20 AC 240 ms
140,208 KB
testcase_21 AC 230 ms
140,464 KB
testcase_22 AC 234 ms
140,212 KB
testcase_23 AC 228 ms
140,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

from bisect import bisect
N, M = map(int, input().split())
A = list(map(int, input().split()))
B = list(map(int, input().split()))

C = [[] for _ in range(N+1)]
for i in range(N):
    C[i+1].append(A[i])

for b in B:
    ind = bisect(A, b)
    C[ind].append(b)
for i in range(N):
    C[i].append(A[i])

ans = 0
for i in range(1, N):
    if len(C[i]) == 2:
        continue
    L = C[i][-1]-C[i][0]
    v = L
    for j in range(len(C[i])-1):
        v = min(v, L-(C[i][j+1]-C[i][j]))
    ans += v

if len(C[0]) > 1:
    ans += C[0][-1]-C[0][0]
if len(C[N]) > 1:
    ans += C[N][-1]-C[N][0]

print(ans)
0