結果

問題 No.738 平らな農地
ユーザー risujirohrisujiroh
提出日時 2019-04-28 19:36:51
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 669 ms / 2,000 ms
コード長 5,299 bytes
コンパイル時間 1,894 ms
コンパイル使用メモリ 183,396 KB
実行使用メモリ 55,096 KB
最終ジャッジ日時 2023-08-22 18:31:39
合計ジャッジ時間 33,359 ms
ジャッジサーバーID
(参考情報)
judge15 / judge11
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
4,376 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 2 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 10 ms
4,472 KB
testcase_06 AC 11 ms
4,508 KB
testcase_07 AC 10 ms
4,668 KB
testcase_08 AC 5 ms
4,376 KB
testcase_09 AC 4 ms
4,380 KB
testcase_10 AC 2 ms
4,380 KB
testcase_11 AC 5 ms
4,380 KB
testcase_12 AC 3 ms
4,380 KB
testcase_13 AC 9 ms
4,388 KB
testcase_14 AC 4 ms
4,380 KB
testcase_15 AC 465 ms
50,380 KB
testcase_16 AC 474 ms
50,872 KB
testcase_17 AC 508 ms
50,576 KB
testcase_18 AC 499 ms
49,888 KB
testcase_19 AC 549 ms
53,568 KB
testcase_20 AC 480 ms
51,188 KB
testcase_21 AC 562 ms
53,852 KB
testcase_22 AC 489 ms
51,540 KB
testcase_23 AC 548 ms
52,588 KB
testcase_24 AC 532 ms
51,400 KB
testcase_25 AC 4 ms
4,380 KB
testcase_26 AC 4 ms
4,380 KB
testcase_27 AC 4 ms
4,380 KB
testcase_28 AC 4 ms
4,380 KB
testcase_29 AC 4 ms
4,376 KB
testcase_30 AC 4 ms
4,376 KB
testcase_31 AC 4 ms
4,376 KB
testcase_32 AC 4 ms
4,380 KB
testcase_33 AC 4 ms
4,380 KB
testcase_34 AC 4 ms
4,380 KB
testcase_35 AC 4 ms
4,376 KB
testcase_36 AC 4 ms
4,380 KB
testcase_37 AC 4 ms
4,380 KB
testcase_38 AC 4 ms
4,376 KB
testcase_39 AC 5 ms
4,380 KB
testcase_40 AC 4 ms
4,380 KB
testcase_41 AC 4 ms
4,376 KB
testcase_42 AC 4 ms
4,376 KB
testcase_43 AC 4 ms
4,380 KB
testcase_44 AC 4 ms
4,380 KB
testcase_45 AC 501 ms
54,648 KB
testcase_46 AC 474 ms
50,056 KB
testcase_47 AC 482 ms
53,020 KB
testcase_48 AC 447 ms
51,136 KB
testcase_49 AC 440 ms
51,004 KB
testcase_50 AC 460 ms
53,160 KB
testcase_51 AC 507 ms
53,308 KB
testcase_52 AC 465 ms
50,860 KB
testcase_53 AC 480 ms
51,868 KB
testcase_54 AC 533 ms
53,716 KB
testcase_55 AC 511 ms
53,436 KB
testcase_56 AC 480 ms
52,768 KB
testcase_57 AC 447 ms
49,896 KB
testcase_58 AC 473 ms
52,500 KB
testcase_59 AC 520 ms
54,784 KB
testcase_60 AC 485 ms
54,332 KB
testcase_61 AC 503 ms
53,976 KB
testcase_62 AC 460 ms
50,396 KB
testcase_63 AC 517 ms
54,708 KB
testcase_64 AC 500 ms
53,972 KB
testcase_65 AC 513 ms
50,840 KB
testcase_66 AC 544 ms
53,092 KB
testcase_67 AC 473 ms
50,376 KB
testcase_68 AC 476 ms
51,852 KB
testcase_69 AC 599 ms
52,856 KB
testcase_70 AC 553 ms
54,492 KB
testcase_71 AC 29 ms
7,992 KB
testcase_72 AC 326 ms
50,136 KB
testcase_73 AC 269 ms
46,984 KB
testcase_74 AC 364 ms
52,544 KB
testcase_75 AC 583 ms
50,172 KB
testcase_76 AC 526 ms
51,964 KB
testcase_77 AC 591 ms
49,864 KB
testcase_78 AC 669 ms
54,260 KB
testcase_79 AC 635 ms
54,608 KB
testcase_80 AC 529 ms
52,600 KB
testcase_81 AC 551 ms
50,588 KB
testcase_82 AC 577 ms
53,072 KB
testcase_83 AC 370 ms
55,096 KB
testcase_84 AC 360 ms
53,040 KB
testcase_85 AC 669 ms
54,180 KB
testcase_86 AC 586 ms
49,924 KB
testcase_87 AC 414 ms
52,212 KB
testcase_88 AC 384 ms
50,032 KB
testcase_89 AC 1 ms
4,376 KB
testcase_90 AC 2 ms
4,380 KB
testcase_91 AC 2 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using lint = long long;
template<class T = int> using V = vector<T>;
template<class T = int> using VV = V< V<T> >;

#pragma GCC target ("avx")
struct Bitvector {
  using T = uint32_t;
  static constexpr int W = 32;
  static int popcnt(T x) { return __builtin_popcount(x); }

  const int n;
  V<T> b;
  V<> c;
  Bitvector(int n) : n(n), b(n / W + 1), c(n / W + 1) {}
  void set(int i) { b[i / W] |= (T)1 << i % W; }
  void build() { for (int i = 0; i < n / W; ++i) c[i + 1] = c[i] + popcnt(b[i]); }
  bool operator[](int i) const { return b[i / W] >> i % W & 1; }
  int rank(int i) const { return c[i / W] + popcnt(b[i / W] & ~(~(T)0 << i % W)); }
  int rank(bool v, int i) const { return v ? rank(i) : i - rank(i); }
};
template<class T> struct WaveletMatrix {
  const int n, h;
  V<Bitvector> b;
  V<> z;
  template<class Itr> WaveletMatrix(Itr first, Itr last) : n(distance(first, last)), h(__lg(2 * *max_element(first, last) + 1)), b(h, Bitvector(n)), z(h) {
    assert(*min_element(first, last) >= 0);
    V<T> a(first, last), na(n);
    for (int j = 0; j < h; ++j) {
      for (int i = 0; i < n; ++i) {
        if (a[i] >> h + ~j & 1) b[j].set(i);
        else ++z[j];
      }
      b[j].build();
      int p = 0, q = z[j];
      for (int i = 0; i < n; ++i) (b[j][i] ? na[q++] : na[p++]) = a[i];
      swap(a, na);
    }
  }
  T operator[](int i) const {
    T res = 0;
    for (int j = 0; j < h; ++j) {
      T v = b[j][i];
      res |= v << h + ~j;
      i = v * z[j] + b[j].rank(v, i);
    }
    return res;
  }
  int rank(int l, int r, T x) const {
    if (x < 0 or x >= (T)1 << h) return 0;
    for (int j = 0; j < h; ++j) {
      int v = x >> h + ~j & 1;
      l = v * z[j] + b[j].rank(v, l);
      r = v * z[j] + b[j].rank(v, r);
    }
    return r - l;
  }
  T kth(int l, int r, int k) const {
    assert(0 <= k and k < r - l);
    T res = 0;
    for (int j = 0; j < h; ++j) {
      int p = b[j].rank(0, l), q = b[j].rank(0, r);
      T v = k >= q - p;
      k -= v * (q - p);
      res |= v << h + ~j;
      l = v * z[j] + (v ? l - p : p);
      r = v * z[j] + (v ? r - q : q);
    }
    return res;
  }
  T rkth(int l, int r, int k) const { return kth(l, r, r - l + ~k); }
  int cnt(int l, int r, T x) const {
    if ((x = max<T>(x, 0)) >= (T)1 << h) return 0;
    int res = 0;
    for (int j = 0; j < h; ++j) {
      int p = b[j].rank(1, l), q = b[j].rank(1, r);
      int v = x >> h + ~j & 1;
      res += !v * (q - p);
      l = v * z[j] + (v ? p : l - p);
      r = v * z[j] + (v ? q : r - q);
    }
    return res + r - l;
  }
  int cnt(int l, int r, T x, T y) const { return cnt(l, r, x) - cnt(l, r, y); }
};

struct WeightedSegmentTree {
  using T = lint;
  static T op(const T& x, const T& y) { return x + y; }
  static constexpr T e() { return 0; }

  struct SegmentTree {
    const int n;
    V<T> t;
    SegmentTree(int n) : n(n), t(2 * n, e()) {}
    T& operator[](int i) { return t[i + n]; }
    void build() { for (int i = n - 1; i; --i) t[i] = op(t[2 * i], t[2 * i + 1]); }
    T acc(int l, int r) const {
      T resl = e(), resr = e();
      for (l += n, r += n; l < r; l >>= 1, r >>= 1) {
        if (l & 1) resl = op(resl, t[l++]);
        if (r & 1) resr = op(t[--r], resr);
      }
      return op(resl, resr);
    }
    void set(int i, const T& x) {
      t[i += n] = x;
      while (i >>= 1) t[i] = op(t[2 * i], t[2 * i + 1]);
    }
  };
  const int n, h;
  V<Bitvector> b;
  V<> z;
  V<SegmentTree> st;
  template<class Itr> WeightedSegmentTree(Itr first, Itr last) :
    n(distance(first, last)), h(__lg(2 * *max_element(first, last) + 1)), b(h, Bitvector(n)), z(h), st(h + 1, SegmentTree(n)) {
    assert(*min_element(first, last) >= 0);
    V<> w(first, last), nw(n);
    for (int j = 0; j < h; ++j) {
      for (int i = 0; i < n; ++i) {
        if (w[i] >> h + ~j & 1) b[j].set(i);
        else ++z[j];
      }
      b[j].build();
      int p = 0, q = z[j];
      for (int i = 0; i < n; ++i) (b[j][i] ? nw[q++] : nw[p++]) = w[i];
      swap(w, nw);
    }
  }
  T operator[](int i) const {return {st[0].t[i + n]}; }
  T acc(int l, int r, int x, int y, int j, int s, int t) const {
    if (y <= s or t <= x) return e();
    if (x <= s and t <= y) return st[j].acc(l, r);
    int m = s + t >> 1, p = b[j].rank(0, l), q = b[j].rank(0, r);
    return op(acc(p, q, x, y, j + 1, s, m), acc(z[j] + l - p, z[j] + r - q, x, y, j + 1, m, t));
  }
  T acc(int l, int r, int x, int y) const { return acc(l, r, x, y, 0, 0, 1 << h); }
  void set(int i, T x) {
    for (int j = 0; j < h; ++j) {
      st[j].set(i, x);
      int v = b[j][i];
      i = v * z[j] + b[j].rank(v, i);
    }
    st[h].set(i, x);
  }
};

int main() {
  cin.tie(nullptr); ios::sync_with_stdio(false);
  int n, k; cin >> n >> k;
  V<> a(n); for (auto&& e : a) cin >> e;
  WaveletMatrix<int> wm(begin(a), end(a));
  WeightedSegmentTree wst(begin(a), end(a));
  for (int i = 0; i < n; ++i) {
    wst.set(i, a[i]);
  }
  lint res = 9e18;
  for (int l = 0; l + k <= n; ++l) {
    int r = l + k;
    lint m = wm.kth(l, r, k / 2);
    int cl = wm.cnt(l, r, 0, m), cu = wm.cnt(l, r, m, 1 << 30);
    lint curr = 0;
    curr += cl * m - wst.acc(l, r, 0, m);
    curr += wst.acc(l, r, m, 1 << 30) - cu * m;
    res = min(res, curr);
  }
  cout << res << '\n';
}
0