結果

問題 No.2028 Even Choice
ユーザー baLoon8128baLoon8128
提出日時 2022-08-05 21:33:07
言語 C++14
(gcc 13.3.0 + boost 1.87.0)
結果
AC  
実行時間 99 ms / 2,000 ms
コード長 721 bytes
コンパイル時間 4,092 ms
コンパイル使用メモリ 230,768 KB
実行使用メモリ 6,364 KB
最終ジャッジ日時 2024-09-15 17:46:08
合計ジャッジ時間 6,377 ms
ジャッジサーバーID
(参考情報)
judge4 / judge6
このコードへのチャレンジ
(要ログイン)
ファイルパターン 結果
sample AC * 3
other AC * 28
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
#include <atcoder/all>
using namespace atcoder;
using ll = long long;
using vi = vector<int>;
using vvi = vector<vector<int>>;
using pii = pair<int, int>;
#define rep(i, n) for (int i = 0; i < (int)(n); ++i)
#define repr(i, n) for (int i = (int)(n - 1); i >= 0; --i)

int main() {
    int n, K;
    cin >> n >> K;
    vi a(n);
    rep(i, n) cin >> a[i];
    ll ret = 0;
    ll s = 0;
    priority_queue<ll, vector<ll>, greater<ll>> pq;
    repr(i, n) {
        if (pq.size() > K - 1) {
            s -= pq.top();
            pq.pop();
        }
        s += a[i];
        pq.emplace(a[i]);
        if (i & 1) ret = max(ret, s);
    }
    cout << ret << endl;
    return 0;
}
0