結果

問題 No.2028 Even Choice
ユーザー T101010101T101010101
提出日時 2023-01-05 23:53:56
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
WA  
実行時間 -
コード長 4,469 bytes
コンパイル時間 3,598 ms
コンパイル使用メモリ 271,716 KB
実行使用メモリ 18,404 KB
最終ジャッジ日時 2023-08-19 20:35:02
合計ジャッジ時間 6,556 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 WA -
testcase_01 AC 106 ms
16,100 KB
testcase_02 AC 71 ms
12,504 KB
testcase_03 AC 83 ms
18,404 KB
testcase_04 AC 75 ms
17,152 KB
testcase_05 AC 23 ms
6,020 KB
testcase_06 AC 54 ms
11,760 KB
testcase_07 AC 29 ms
6,748 KB
testcase_08 AC 34 ms
7,812 KB
testcase_09 AC 76 ms
12,080 KB
testcase_10 AC 33 ms
7,456 KB
testcase_11 AC 9 ms
4,376 KB
testcase_12 WA -
testcase_13 AC 110 ms
14,848 KB
testcase_14 AC 18 ms
5,200 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,380 KB
testcase_17 AC 2 ms
4,380 KB
testcase_18 AC 1 ms
4,376 KB
testcase_19 AC 2 ms
4,376 KB
testcase_20 AC 2 ms
4,380 KB
testcase_21 AC 2 ms
4,380 KB
testcase_22 AC 1 ms
4,376 KB
testcase_23 AC 1 ms
4,376 KB
testcase_24 AC 1 ms
4,380 KB
testcase_25 AC 1 ms
4,376 KB
testcase_26 AC 2 ms
4,380 KB
testcase_27 AC 1 ms
4,376 KB
testcase_28 AC 28 ms
6,968 KB
testcase_29 AC 21 ms
5,788 KB
testcase_30 AC 14 ms
4,916 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#pragma region Macros

#include <bits/extc++.h>
using namespace std;
using namespace __gnu_pbds;
// using namespace __gnu_cxx;

// #include <boost/multiprecision/cpp_int.hpp>
// namespace mp = boost::multiprecision;
// using Bint = mp::cpp_int;

#define TO_STRING(var) # var
#define pb emplace_back
#define int ll
#define endl '\n'

using ll = long long;
using ld = long double;
const ld PI = acos(-1);
const ld EPS = 1e-10;
const int INF = 1 << 30;
const ll INFL = 1LL << 61;
// const int MOD = 998244353;
const int MOD = 1000000007;

__attribute__((constructor))
void constructor() {
    ios::sync_with_stdio(false);
    cin.tie(nullptr);
    cout << fixed << setprecision(15);
}

template<int mod> class modint{
public:
    int val = 0;
    modint(int x = 0) { while (x < 0) x += mod; val = x % mod; }
    modint(const modint &r) { val = r.val; }

    modint operator -() { return modint(-val); }
    modint operator +(const modint &r) { return modint(*this) += r; }
    modint operator -(const modint &r) { return modint(*this) -= r; }
    modint operator *(const modint &r) { return modint(*this) *= r; }
    modint operator /(const modint &r) { return modint(*this) /= r; }

    modint &operator +=(const modint &r) {
        val += r.val;
        if (val >= mod) val -= mod;
        return *this;
    }
    modint &operator -=(const modint &r) {
        if (val < r.val) val += mod;
        val -= r.val;
        return *this;
    }
    modint &operator *=(const modint &r) {
        val = val * r.val % mod;
        return *this;
    }
    modint &operator /=(const modint &r) {
        int a = r.val, b = mod, u = 1, v = 0;
        while (b) {
            int t = a / b;
            a -= t * b; swap(a, b);
            u -= t * v; swap(u, v);
        }
        val = val * u % mod;
        if (val < 0) val += mod;
        return *this;
    }

    bool operator ==(const modint& r) { return this -> val == r.val; }
    bool operator <(const modint& r) { return this -> val < r.val; }
    bool operator !=(const modint& r) { return this -> val != r.val; }
};

using mint = modint<MOD>;

istream &operator >>(istream &is, mint& x) {
    int t; is >> t;
    x = t;
    return (is);
}
ostream &operator <<(ostream &os, const mint& x) {
    return os << x.val;
}

mint modpow(const mint &a, int n) {
    if (n == 0) return 1;
    mint t = modpow(a, n / 2);
    t = t * t;
    if (n & 1) t = t * a;
    return t;
}

int modpow(int x, int n, int mod) {
    int ret = 1;
    while (n > 0) {
        if (n % 2 == 1) ret = ret * x % mod;
        x = x * x % mod;
        n /= 2;
    }
    return ret;
}

int ceil(int x, int y) { return (x > 0 ? (x + y - 1) / y : x / y); }

#pragma endregion

signed main() {
    int N, K;
    cin >> N >> K;
    vector<pair<int,int>> A(N);
    for (int i = 0; i < N; i++) {
        cin >> A[i].first;
        A[i].second = i;
    }
    vector<pair<int,int>> B = A;

    sort(A.rbegin(), A.rend());

    int ans = 0;
    set<int> st;
    for (int i = 0; i < K - 1; i++) {
        if (A[i].second == 0) continue;
        ans += A[i].first;
        st.insert(A[i].second);
    }
    
    if (st.size() == 0) {
        int ma = 0;
        for (int i = 0; i < N; i++) {
            if (i % 2 == 0) continue;
            if (B[i].first > ma) {
                ma = B[i].first;
            }
        }
        cout << ma << endl;
        return 0;
    }

    int mi = *st.begin();
    
    if (mi % 2 == 0) {
        int ma = 0;
        int ind = -1;
        for (int i = 0; i < mi; i++) {
            if (i % 2 == 0) continue;
            if (B[i].first > ma) {
                ma = B[i].first;
                ind = i;
            }
        }
        ans += ma;
        st.insert(ind);
    } else {
        int ma = 0;
        int ind = -1;
        for (int i = 0; i < N; i++) {
            if (i < mi && i % 2 == 0) continue;
            if (st.count(i)) continue;
            if (B[i].first > ma) {
                ma = B[i].first;
                ind = i;
            }
        }
        ans += ma;
        st.insert(ind);
    }

    mi = *st.begin();

    if (st.size() < K) {
        int ma = 0;
        int ind = -1;
        for (int i = 0; i < N; i++) {
            if (i < mi && i % 2 == 0) continue;
            if (st.count(i)) continue;
            if (B[i].first > ma) {
                ma = B[i].first;
                ind = i;
            }
        }
        ans += ma;
        st.insert(ind);
    }

    cout << ans << endl;
}
0