#include #include using namespace std; using namespace atcoder; typedef int64_t lint; #define rep(i, n) for(int i=0; i; using vvi = vector>; template inline void vin(vector& v) { rep(i, v.size()) cin >> v.at(i); } template inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; } template inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; } template inline void drop(T x) { cout << x << endl; exit(0); } template void vout(vector v) { rep(i, v.size()) { cout << v.at(i) << ' '; } cout << endl; } constexpr lint LINF = LLONG_MAX/2; int main() { lint N, M; cin >> N >> M; vi v(N), w(M); vin(v); vin(w); lint a=0, b=0, c=0, x, y, z; v.pb(LINF); reverse(all(v)); v.pb(-LINF); reverse(all(v)); rep(i, N+1) { auto l = lower_bound(all(w), v[i]); auto r = lower_bound(all(w), v[i+1]); if (l == r) continue; r--; b = max(*l - v[i], v[i+1] - *r); x = l - w.begin(); y = r - w.begin(); repx(j, x, y) { chmax(b, w[j+1]-w[j]); } a += v[i+1] - v[i] - b; } std::cout << a << '\n'; }