結果

問題 No.2856 Junk Market Game
ユーザー t98slidert98slider
提出日時 2024-08-25 16:07:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 97 ms / 2,000 ms
コード長 1,248 bytes
コンパイル時間 2,374 ms
コンパイル使用メモリ 213,488 KB
実行使用メモリ 34,944 KB
最終ジャッジ日時 2024-08-25 16:07:34
合計ジャッジ時間 6,436 ms
ジャッジサーバーID
(参考情報)
judge4 / judge1
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,812 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,944 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 1 ms
6,940 KB
testcase_09 AC 1 ms
6,940 KB
testcase_10 AC 18 ms
11,392 KB
testcase_11 AC 50 ms
28,928 KB
testcase_12 AC 83 ms
31,744 KB
testcase_13 AC 14 ms
9,856 KB
testcase_14 AC 47 ms
26,368 KB
testcase_15 AC 17 ms
11,520 KB
testcase_16 AC 53 ms
29,824 KB
testcase_17 AC 29 ms
16,128 KB
testcase_18 AC 33 ms
19,456 KB
testcase_19 AC 23 ms
16,000 KB
testcase_20 AC 15 ms
10,752 KB
testcase_21 AC 65 ms
30,720 KB
testcase_22 AC 63 ms
29,184 KB
testcase_23 AC 32 ms
19,456 KB
testcase_24 AC 41 ms
20,992 KB
testcase_25 AC 13 ms
9,216 KB
testcase_26 AC 2 ms
6,940 KB
testcase_27 AC 49 ms
24,832 KB
testcase_28 AC 21 ms
13,568 KB
testcase_29 AC 58 ms
31,360 KB
testcase_30 AC 79 ms
34,944 KB
testcase_31 AC 76 ms
34,944 KB
testcase_32 AC 77 ms
34,816 KB
testcase_33 AC 81 ms
34,944 KB
testcase_34 AC 97 ms
34,944 KB
testcase_35 AC 80 ms
34,944 KB
testcase_36 AC 79 ms
34,944 KB
testcase_37 AC 81 ms
34,944 KB
testcase_38 AC 79 ms
34,944 KB
testcase_39 AC 80 ms
34,944 KB
testcase_40 AC 79 ms
34,816 KB
testcase_41 AC 83 ms
34,944 KB
testcase_42 AC 80 ms
34,944 KB
testcase_43 AC 81 ms
34,944 KB
testcase_44 AC 78 ms
34,944 KB
testcase_45 AC 76 ms
34,944 KB
testcase_46 AC 82 ms
34,944 KB
testcase_47 AC 97 ms
34,816 KB
testcase_48 AC 80 ms
34,944 KB
testcase_49 AC 80 ms
34,944 KB
testcase_50 AC 77 ms
34,944 KB
testcase_51 AC 80 ms
34,816 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;
using ll = long long;

template<class T> istream& operator >> (istream& is, vector<T>& vec) {
    for(T& x : vec) is >> x;
    return is;
}

template<class T> ostream& operator << (ostream& os, const vector<T>& vec) {
    if(vec.empty()) return os;
    os << vec[0];
    for(auto it = vec.begin(); ++it != vec.end(); ) os << ' ' << *it;
    return os;
}

int main(){
    ios::sync_with_stdio(false);
    cin.tie(0);
    int n;
    cin >> n;
    n *= 2;
    vector<ll> a(n), b(n);
    vector<pair<ll,int>> c(n);
    cin >> a >> b;
    for(int i = 0; i < n; i++){
        c[i].first = a[i] + b[i];
        c[i].second = i;
    }
    sort(c.begin(), c.end());
    constexpr ll INF = 1ll << 60;
    vector dp(n + 1, vector<ll>(n + 1, -INF));
    auto rec = [&](auto rec, int l, int r) -> ll {
        if(l == r) return 0;
        if(dp[l][r] != -INF) return dp[l][r];
        if((r - l) % 2 == 0){
            dp[l][r] = min(a[c[l].second] + rec(rec, l + 1, r), a[c[r - 1].second] + rec(rec, l, r - 1));
        }else{
            dp[l][r] = max(-b[c[l].second] + rec(rec, l + 1, r), -b[c[r - 1].second] + rec(rec, l, r - 1));
        }
        return dp[l][r];
    };
    cout << rec(rec, 0, n) << '\n';
}
0