結果

問題 No.738 平らな農地
ユーザー milanis48663220milanis48663220
提出日時 2021-06-03 01:55:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 2,547 bytes
コンパイル時間 1,546 ms
コンパイル使用メモリ 125,348 KB
実行使用メモリ 11,392 KB
最終ジャッジ日時 2024-11-15 21:43:19
合計ジャッジ時間 127,316 ms
ジャッジサーバーID
(参考情報)
judge3 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
10,496 KB
testcase_01 AC 2 ms
9,856 KB
testcase_02 AC 2 ms
10,496 KB
testcase_03 AC 2 ms
9,728 KB
testcase_04 AC 2 ms
10,496 KB
testcase_05 AC 7 ms
9,728 KB
testcase_06 AC 7 ms
10,496 KB
testcase_07 AC 75 ms
9,856 KB
testcase_08 AC 8 ms
10,496 KB
testcase_09 AC 3 ms
9,856 KB
testcase_10 AC 3 ms
10,496 KB
testcase_11 AC 13 ms
9,728 KB
testcase_12 AC 5 ms
10,496 KB
testcase_13 AC 8 ms
9,856 KB
testcase_14 AC 3 ms
10,496 KB
testcase_15 TLE -
testcase_16 TLE -
testcase_17 TLE -
testcase_18 TLE -
testcase_19 AC 1,086 ms
9,984 KB
testcase_20 TLE -
testcase_21 TLE -
testcase_22 TLE -
testcase_23 TLE -
testcase_24 TLE -
testcase_25 AC 9 ms
9,728 KB
testcase_26 AC 10 ms
10,496 KB
testcase_27 AC 9 ms
9,856 KB
testcase_28 AC 9 ms
10,496 KB
testcase_29 AC 9 ms
9,856 KB
testcase_30 AC 8 ms
10,496 KB
testcase_31 AC 9 ms
9,984 KB
testcase_32 AC 10 ms
10,496 KB
testcase_33 AC 8 ms
9,728 KB
testcase_34 AC 8 ms
10,496 KB
testcase_35 AC 10 ms
9,856 KB
testcase_36 AC 10 ms
10,496 KB
testcase_37 AC 11 ms
9,856 KB
testcase_38 AC 9 ms
9,984 KB
testcase_39 AC 10 ms
10,496 KB
testcase_40 AC 9 ms
10,496 KB
testcase_41 AC 8 ms
9,984 KB
testcase_42 AC 10 ms
10,496 KB
testcase_43 AC 10 ms
9,728 KB
testcase_44 AC 9 ms
10,496 KB
testcase_45 TLE -
testcase_46 TLE -
testcase_47 TLE -
testcase_48 TLE -
testcase_49 TLE -
testcase_50 TLE -
testcase_51 TLE -
testcase_52 TLE -
testcase_53 TLE -
testcase_54 TLE -
testcase_55 TLE -
testcase_56 TLE -
testcase_57 TLE -
testcase_58 TLE -
testcase_59 TLE -
testcase_60 TLE -
testcase_61 TLE -
testcase_62 TLE -
testcase_63 TLE -
testcase_64 TLE -
testcase_65 AC 20 ms
10,752 KB
testcase_66 AC 20 ms
10,496 KB
testcase_67 AC 44 ms
9,984 KB
testcase_68 AC 44 ms
11,392 KB
testcase_69 TLE -
testcase_70 TLE -
testcase_71 AC 31 ms
9,600 KB
testcase_72 AC 41 ms
10,496 KB
testcase_73 AC 45 ms
9,728 KB
testcase_74 AC 36 ms
10,496 KB
testcase_75 TLE -
testcase_76 TLE -
testcase_77 TLE -
testcase_78 TLE -
testcase_79 AC 41 ms
5,248 KB
testcase_80 AC 52 ms
5,504 KB
testcase_81 TLE -
testcase_82 TLE -
testcase_83 AC 43 ms
5,248 KB
testcase_84 TLE -
testcase_85 AC 21 ms
5,248 KB
testcase_86 AC 25 ms
5,248 KB
testcase_87 TLE -
testcase_88 TLE -
testcase_89 AC 2 ms
5,248 KB
testcase_90 AC 2 ms
5,248 KB
testcase_91 AC 2 ms
10,496 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <algorithm>
#include <iomanip>
#include <vector>
#include <queue>
#include <set>
#include <map>
#include <tuple>
#include <cmath>
#include <numeric>
#include <functional>
#include <cassert>

#define debug_value(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << #x << "=" << x << endl;
#define debug(x) cerr << "line" << __LINE__ << ":<" << __func__ << ">:" << x << endl;

template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }

using namespace std;
typedef long long ll;

class MedianTracker{
    public:
    ll sum_l = 0;
    ll sum_r = 0;
    int size = 0;
    void push(ll x){
        str.insert(x);
        sum_r += x;
        size++;
        balance();
    }
    void pop(ll x){
        if(stl.find(x) != stl.end()) {
            stl.erase(stl.find(x));
            sum_l -= x;
        }else{
            str.erase(str.find(x));
            sum_r -= x;
        }
        size--;
        balance();
    }
    ll median(){
        return *str.begin();
    }
    private:
    void balance(){
        while(*str.begin() < *stl.begin()){
            ll x = *stl.begin();
            stl.erase(stl.begin());
            str.insert(x);
            sum_l -= x;
            sum_r += x;
        }
        while(2*str.size() < size){
            ll x = *stl.begin();
            stl.erase(stl.begin());
            str.insert(x);
            sum_l -= x;
            sum_r += x;
        }
        while(2*str.size() > size+1){
            ll x = *str.begin();
            str.erase(str.begin());
            stl.insert(x);
            sum_l += x;
            sum_r -= x;
        }
    }
    multiset<ll, greater<ll>> stl;
    multiset<ll> str;
};

const ll INF = 1e18;

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    cout << setprecision(10) << fixed;
    int n, k; cin >> n >> k;
    vector<ll> a(n);
    for(int i = 0; i < n; i++) cin >> a[i];
    auto mt = MedianTracker();
    ll ans = INF;
    for(int i = 0; i < k; i++) mt.push(a[i]);
    // cout << mt.median() << ' ' << mt.sum_l << ' ' << mt.sum_r << endl;
    int l = k/2, r = k-l;
    chmin(ans, mt.median()*l-mt.sum_l + mt.sum_r-mt.median()*r);
    for(int i = k; i < n; i++){
        mt.push(a[i]);
        mt.pop(a[i-k]);
        chmin(ans, mt.median()*l-mt.sum_l + mt.sum_r-mt.median()*r);
        // cout << mt.median() << ' ' << mt.sum_l << ' ' << mt.sum_r << endl;
    } 
    cout << ans << endl;
}
0