結果

問題 No.2028 Even Choice
ユーザー srjywrdnprktsrjywrdnprkt
提出日時 2023-05-13 03:58:14
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 190 ms / 2,000 ms
コード長 758 bytes
コンパイル時間 1,080 ms
コンパイル使用メモリ 112,580 KB
実行使用メモリ 14,208 KB
最終ジャッジ日時 2024-11-28 23:32:48
合計ジャッジ時間 4,010 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 159 ms
9,472 KB
testcase_01 AC 190 ms
11,648 KB
testcase_02 AC 137 ms
7,936 KB
testcase_03 AC 144 ms
14,208 KB
testcase_04 AC 142 ms
12,672 KB
testcase_05 AC 29 ms
5,248 KB
testcase_06 AC 125 ms
7,808 KB
testcase_07 AC 37 ms
5,504 KB
testcase_08 AC 67 ms
5,248 KB
testcase_09 AC 114 ms
8,704 KB
testcase_10 AC 38 ms
6,144 KB
testcase_11 AC 21 ms
5,248 KB
testcase_12 AC 9 ms
5,248 KB
testcase_13 AC 135 ms
11,392 KB
testcase_14 AC 30 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 2 ms
5,248 KB
testcase_18 AC 2 ms
5,248 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 3 ms
5,248 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 3 ms
5,248 KB
testcase_23 AC 2 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 2 ms
5,248 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 2 ms
5,248 KB
testcase_28 AC 58 ms
5,248 KB
testcase_29 AC 38 ms
5,248 KB
testcase_30 AC 27 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <cmath>
#include <map>
#include <set>
#include <iomanip>
#include <queue>
#include <algorithm>
#include <numeric>
#include <deque>
#include <complex>
#include <cassert>

using namespace std;
using ll = long long;

int main(){

    ll N, K, S=0, ans=0, mi;
    cin >> N >> K;
    multiset<ll> st;
    vector<ll> A(N);

    for (int i=0; i<N; i++) cin >> A[i];
    for (int i=N-1; i>=0; i--){
        if (i % 2 == 1){
            if (st.size() == K-1){
                ans = max(ans, A[i]+S);
            }
        }
        st.insert(A[i]);
        S += A[i];
        if (st.size() == K){
            S -= *st.begin();
            st.erase(st.begin());
        }
    }

    cout << ans << endl;

    return 0;
}
0