// includes #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include // macros #define ll long long int #define pb emplace_back #define mk make_pair #define pq priority_queue #define FOR(i, a, b) for(int i=(a);i<(b);++i) #define rep(i, n) FOR(i, 0, n) #define rrep(i, n) for(int i=((int)(n)-1);i>=0;i--) #define all(x) (x).begin(),(x).end() #define sz(x) ((int)(x).size()) #define UNIQUE(v) v.erase(unique(v.begin(), v.end()), v.end()) using namespace std; // types typedef pair P; typedef pair Pl; typedef pair Pll; typedef pair Pd; // constants const int inf = 1e9; const ll linf = 1LL << 50; const double EPS = 1e-10; const int mod = 1e9 + 7; // solve template bool chmax(T &a, const T &b){if(a < b){a = b; return 1;} return 0;} template bool chmin(T &a, const T &b){if(a > b){a = b; return 1;} return 0;} template struct ImplicitTreap{ random_device rnd; T def = 0; E l_def = 0; function f; function g; function p; struct Node{ T val, acc; E lazy; int cnt, pri; bool rev; Node *l, *r; Node(T val, int pri, T def, E l_def): val(val), acc(def), lazy(l_def), cnt(1), pri(pri), rev(false), l(nullptr), r(nullptr){} }; using Tree = Node *; Tree root = nullptr; ImplicitTreap(T def, E l_def, function f, function g, function p): def(def), l_def(l_def), f(f), g(g), p(p){} int cnt(Tree t){ if(!t)return 0; return t->cnt; } T acc(Tree t){ if(!t)return def; return t->acc; } void update_cnt(Tree t){ if(t){ //cerr << t->val << endl; t->cnt = 1 + cnt(t->l) + cnt(t->r); } } void update_acc(Tree t){ if(t){ t->acc = f(t->val, f(acc(t->l), acc(t->r))); } } void pushup(Tree t){ update_cnt(t); update_acc(t); } void pushdown(Tree t){ if(t){ if(t->rev){ t->rev = false; swap(t->l, t->r); if(t->l)t->l->rev ^= 1; if(t->r)t->r->rev ^= 1; } if(t->lazy != l_def){ if(t->l){ t->l->lazy = g(t->l->lazy, t->lazy); t->l->acc = p(t->l->acc, t->lazy, cnt(t->l)); } if(t->r){ t->r->lazy = g(t->r->lazy, t->lazy); t->r->acc = p(t->r->acc, t->lazy, cnt(t->r)); } t->val = p(t->val, t->lazy, 1); t->lazy = l_def; } } pushup(t); } void split(Tree t, int key, Tree &l, Tree &r){ if(!t){ l = r = nullptr; return; } pushdown(t); int ikey = cnt(t->l) + 1; if(key < ikey)split(t->l, key, l, t->l), r = t; else split(t->r, key - ikey, t->r, r), l = t; pushup(t); } void merge(Tree &t, Tree l, Tree r){ pushdown(l); pushdown(r); if(!l || !r){ if(l)t = l; else t = r; return; } if(l->pri > r->pri){ merge(l->r, l->r, r), t = l; }else{ merge(r->l, l, r->l), t = r; } pushup(t); } void insert(Tree &t, int key, Tree item){ Tree t1, t2; split(t, key, t1, t2); merge(t1, t1, item); merge(t, t1, t2); } void erase(Tree &t, int key){ Tree t1, t2, t3; split(t, key + 1, t1, t2); split(t1, key, t1, t3); merge(t, t1, t2); } void update(Tree t, int l, int r, E x){ Tree t1, t2, t3; split(t, l, t1, t2); split(t2, r - l, t2, t3); t2->lazy = g(t2->lazy, x); t2->acc = p(t2->acc, x, cnt(t2)); merge(t2, t2, t3); merge(t, t1, t2); } T query(Tree t, int l, int r){ Tree t1, t2, t3; split(t, l, t1, t2); split(t2, r - l, t2, t3); T res = t2->acc; merge(t2, t2, t3); merge(t, t1, t2); return res; } int find_(Tree t, T x, int of, bool left=true){ if(f(t->acc, x) == x)return -1; if(left){ if(t->l && f(t->l->acc, x) != x)return find_(t->l, x, of, left); if(f(t->acc, x) != x)return of + cnt(t->l); return find_(t->r, x, of + cnt(t->l) + 1, left); }else{ if(t->r && f(t->r->acc, x) != x)return find_(t->r, x, of + cnt(t->l) + 1, left); if(f(t->acc, x) != x)return of + cnt(t->l); return find_(t->l, x, of, left); } } void reverse(Tree t, int l, int r){ if(l > r)return; Tree t1, t2, t3; split(t, l, t1, t2); split(t2, r - l, t2, t3); t2->rev ^= 1; merge(t2, t2, t3); merge(t, t1, t2); } // m is top void rotate(Tree t, int l, int m, int r){ reverse(t, l, r); reverse(t, l, l + r - m); reverse(t, l + r - m, r); } int size(){ return cnt(root); } void insert(int pos, T x){ insert(root, pos, new Node(x, rnd(), def, l_def)); } void update(int l, int r, T x){ update(root, l, r, x); } T query(int l, int r){ return query(root, l, r); } int find(int l, int r, T x, bool left=true){ Tree t1, t2, t3; split(root, l, t1, t2); split(t2, r - l, t2, t3); int res = find_(t2, x, l, left); merge(t2, t2, t3); merge(root, t1, t2); return res; } void erase(int pos){ erase(root, pos); } void reverse(int l, int r){ reverse(root, l, r); } void rotate(int l, int m, int r){ rotate(root, l, m, r); } T operator[](int pos){ Tree t1, t2, t3; split(root, pos + 1, t1, t2); split(t1, pos, t1, t3); T res = t3->acc; merge(t1, t1, t3); merge(root, t1, t2); return res; } int at(Tree t, T x){ if(!t)return 0; if(t->val == x)return cnt(t->l); else if(t->val > x)return at(t->l, x); else return cnt(t->l) + 1 + at(t->r, x); } }; int at(ImplicitTreap & itr, ll x){ if(itr.size() == 0)return 0; return itr.at(itr.root, x); } int main(int argc, char const* argv[]) { //ios_base::sync_with_stdio(false); //cin.tie(0); int n, k; cin >> n >> k; vector a(n); //rep(i, n)cin >> a[i]; rep(i, n)scanf("%lld", &a[i]); if(k == 1){ cout << 0 << endl; return 0; } ImplicitTreap itr(0, 0, [](ll a, ll b){return a + b;}, [](ll a, ll b){return a + b;}, [](ll a, ll b, int c){return a + b * c;}); for(int i = 0; i < k; i++){ itr.insert(at(itr, a[i]), a[i]); } ll res = linf; for(int i = k - 1; i < n; i++){ if(i != k - 1){ //for(int j = 0; j < k; j++)cerr << "o " << itr[j] << "\n "[j + 1 != k]; //cerr << a[i-k] << " " << at(itr, a[i-k]) << endl; itr.erase(at(itr, a[i-k])); itr.insert(at(itr, a[i]), a[i]); } if(k % 2 == 1){ ll med = itr[k / 2]; ll tmp = itr.query(k / 2, k) - (k - k / 2) * med; tmp += (k / 2) * med - itr.query(0, k / 2); res = min(res, tmp); }else{ ll med = (itr[k / 2 - 1] + itr[k / 2]) / 2; ll tmp = itr.query(k / 2, k) - (k - k / 2) * med; //cerr << itr[0] << " " << itr[1] << endl; tmp += (k / 2) * med - itr.query(0, k / 2); if(tmp >= 0)res = min(res, tmp); med++; tmp = itr.query(k / 2, k) - (k - k / 2) * med; tmp += (k / 2) * med - itr.query(0, k / 2); if(tmp >= 0)res = min(res, tmp); } } cout << res << endl; return 0; }