結果

問題 No.1767 BLUE to RED
ユーザー suosuo
提出日時 2021-11-26 22:54:45
言語 PyPy3
(7.3.15)
結果
AC  
実行時間 288 ms / 2,000 ms
コード長 507 bytes
コンパイル時間 174 ms
コンパイル使用メモリ 82,688 KB
実行使用メモリ 141,504 KB
最終ジャッジ日時 2024-06-29 18:21:51
合計ジャッジ時間 5,790 ms
ジャッジサーバーID
(参考情報)
judge2 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 41 ms
52,096 KB
testcase_01 AC 41 ms
51,968 KB
testcase_02 AC 38 ms
51,840 KB
testcase_03 AC 39 ms
52,224 KB
testcase_04 AC 40 ms
52,864 KB
testcase_05 AC 49 ms
60,288 KB
testcase_06 AC 40 ms
52,224 KB
testcase_07 AC 52 ms
63,488 KB
testcase_08 AC 53 ms
63,616 KB
testcase_09 AC 189 ms
99,016 KB
testcase_10 AC 224 ms
104,972 KB
testcase_11 AC 193 ms
105,796 KB
testcase_12 AC 189 ms
100,048 KB
testcase_13 AC 257 ms
126,272 KB
testcase_14 AC 281 ms
140,988 KB
testcase_15 AC 277 ms
141,104 KB
testcase_16 AC 282 ms
141,008 KB
testcase_17 AC 275 ms
141,504 KB
testcase_18 AC 288 ms
141,144 KB
testcase_19 AC 276 ms
141,156 KB
testcase_20 AC 274 ms
141,008 KB
testcase_21 AC 271 ms
141,248 KB
testcase_22 AC 278 ms
140,984 KB
testcase_23 AC 278 ms
141,132 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

import bisect

n,m = map(int,input().split())
a = [-10**9] + list(map(int,input().split())) + [2*10**9+1]
b = [-10**9] + list(map(int,input().split())) + [2*10**9+1]
ans = 0
for i in range(n+1):
    mi,ma = a[i],a[i+1]
    l = bisect.bisect_right(b,mi)
    r = bisect.bisect_left(b,ma) - 1
    while l <= r:
        if b[l] - mi < ma - b[r]:
            ans += b[l] - mi
            mi = b[l]
            l += 1
        else:
            ans += ma - b[r]
            ma = b[r]
            r -= 1
print(ans)
0