結果

問題 No.738 平らな農地
ユーザー ooaiuooaiu
提出日時 2024-12-01 12:02:23
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 2,322 bytes
コンパイル時間 3,342 ms
コンパイル使用メモリ 256,736 KB
実行使用メモリ 5,484 KB
最終ジャッジ日時 2024-12-01 12:02:33
合計ジャッジ時間 9,166 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 3 ms
5,248 KB
testcase_06 AC 3 ms
5,248 KB
testcase_07 AC 3 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 2 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 2 ms
5,248 KB
testcase_12 AC 2 ms
5,248 KB
testcase_13 AC 3 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 46 ms
5,248 KB
testcase_16 AC 47 ms
5,248 KB
testcase_17 AC 50 ms
5,248 KB
testcase_18 AC 49 ms
5,248 KB
testcase_19 AC 58 ms
5,348 KB
testcase_20 AC 47 ms
5,248 KB
testcase_21 AC 55 ms
5,248 KB
testcase_22 AC 47 ms
5,248 KB
testcase_23 AC 54 ms
5,248 KB
testcase_24 AC 54 ms
5,248 KB
testcase_25 AC 3 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 3 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 3 ms
5,248 KB
testcase_33 AC 3 ms
5,248 KB
testcase_34 AC 3 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 2 ms
5,248 KB
testcase_37 AC 2 ms
5,248 KB
testcase_38 AC 2 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 2 ms
5,248 KB
testcase_41 AC 3 ms
5,248 KB
testcase_42 AC 2 ms
5,248 KB
testcase_43 AC 2 ms
5,248 KB
testcase_44 AC 3 ms
5,248 KB
testcase_45 AC 49 ms
5,356 KB
testcase_46 AC 45 ms
5,248 KB
testcase_47 AC 48 ms
5,248 KB
testcase_48 AC 45 ms
5,248 KB
testcase_49 AC 44 ms
5,248 KB
testcase_50 AC 45 ms
5,248 KB
testcase_51 AC 49 ms
5,248 KB
testcase_52 AC 46 ms
5,248 KB
testcase_53 AC 48 ms
5,248 KB
testcase_54 AC 49 ms
5,248 KB
testcase_55 AC 50 ms
5,248 KB
testcase_56 AC 49 ms
5,248 KB
testcase_57 AC 45 ms
5,248 KB
testcase_58 AC 47 ms
5,248 KB
testcase_59 AC 48 ms
5,356 KB
testcase_60 AC 47 ms
5,248 KB
testcase_61 AC 47 ms
5,248 KB
testcase_62 AC 44 ms
5,248 KB
testcase_63 AC 51 ms
5,356 KB
testcase_64 AC 48 ms
5,248 KB
testcase_65 AC 60 ms
5,248 KB
testcase_66 AC 62 ms
5,248 KB
testcase_67 AC 35 ms
5,248 KB
testcase_68 AC 34 ms
5,248 KB
testcase_69 AC 43 ms
5,248 KB
testcase_70 AC 39 ms
5,348 KB
testcase_71 AC 30 ms
5,248 KB
testcase_72 WA -
testcase_73 WA -
testcase_74 WA -
testcase_75 AC 47 ms
5,248 KB
testcase_76 AC 44 ms
5,248 KB
testcase_77 AC 49 ms
5,248 KB
testcase_78 AC 54 ms
5,352 KB
testcase_79 AC 48 ms
5,352 KB
testcase_80 AC 42 ms
5,248 KB
testcase_81 AC 44 ms
5,248 KB
testcase_82 AC 46 ms
5,248 KB
testcase_83 AC 33 ms
5,356 KB
testcase_84 WA -
testcase_85 AC 72 ms
5,484 KB
testcase_86 AC 65 ms
5,248 KB
testcase_87 AC 39 ms
5,248 KB
testcase_88 AC 37 ms
5,248 KB
testcase_89 AC 2 ms
5,248 KB
testcase_90 AC 2 ms
5,248 KB
testcase_91 AC 2 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#ifndef LOCAL
#include <bits/stdc++.h>

using namespace std;

#define debug(...) (void(0))
#else
#include "algo/debug.h"
#endif

template <class T>
struct FenwickTree {
   private:
    int n;
    int pw;
    std::vector<T> dat;

   public:
    FenwickTree(int m = 0) { init(m); }

    void init(int m) {
        n = m;
        pw = std::bit_floor((unsigned int)n);
        dat.assign(n, T{});
    }

    void add(int p, const T& x) {
        assert(0 <= p && p < n);
        for (p += 1; p <= n; p += p & -p) {
            dat[p - 1] += x;
        }
    }

    T sum(int l, int r) const {
        assert(0 <= l && l <= r && r <= n);
        return sum(r) - sum(l);
    }

    int select(T x) const {
        int at = 0;
        for (int len = pw; len > 0; len >>= 1) {
            if (at + len <= n && dat[at + len - 1] <= x) {
                at += len;
                x -= dat[at - 1];
            }
        }
        assert(0 <= at && at <= n);
        return at;
    }

   private:
    T sum(int r) const {
        T ans{};
        for (; r > 0; r -= r & -r) {
            ans += dat[r - 1];
        }
        return ans;
    }
};

void solve() {
    int N, K;
    cin >> N >> K;
    vector<int> A(N);
    for (int i = 0; i < N; i++) cin >> A[i];
    vector<int> cc;
    for (const auto& x : A) cc.push_back(x);
    sort(cc.begin(), cc.end());
    cc.erase(unique(cc.begin(), cc.end()), cc.end());
    FenwickTree<int> st(N);
    FenwickTree<int64_t> fw(N);
    const auto Add = [&](int p, int x, int64_t a) {
        int y = distance(cc.begin(), lower_bound(cc.begin(), cc.end(), p));
        st.add(y, x);
        fw.add(y, a);
    };
    int64_t ans = 1e18;
    int64_t sum = 0;
    for (int i = 0; i < N; i++) {
        if (i < K - 1) {
            Add(A[i], 1, A[i]);
            sum += A[i];
        } else {
            Add(A[i], 1, A[i]);
            sum += A[i];
            int id = st.select(K / 2);
            int64_t res = (2 * st.sum(0, id) - K) * cc[id] + sum - 2 * fw.sum(0, id);
            ans = min(ans, res);
            Add(A[i - K + 1], -1, -A[i - K + 1]);
            sum -= A[i - K + 1];
        }
    }
    cout << ans << endl;
}

int main() {
    std::ios::sync_with_stdio(false);
    std::cin.tie(nullptr);
    int tt = 1;
    // std::cin >> tt;
    while (tt--) {
        solve();
    }
}
0