結果
問題 | No.1767 BLUE to RED |
ユーザー | rlangevin |
提出日時 | 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 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
sample | AC * 3 |
other | AC * 21 |
ソースコード
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)