結果

問題 No.1374 Absolute Game
ユーザー RheoTommyRheoTommy
提出日時 2021-02-05 23:12:05
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 1,798 bytes
コンパイル時間 2,321 ms
コンパイル使用メモリ 212,864 KB
実行使用メモリ 5,708 KB
最終ジャッジ日時 2024-07-02 14:27:17
合計ジャッジ時間 3,947 ms
ジャッジサーバーID
(参考情報)
judge5 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 1 ms
5,248 KB
testcase_02 AC 2 ms
5,376 KB
testcase_03 AC 2 ms
5,376 KB
testcase_04 AC 2 ms
5,376 KB
testcase_05 AC 1 ms
5,376 KB
testcase_06 AC 2 ms
5,376 KB
testcase_07 AC 2 ms
5,376 KB
testcase_08 AC 16 ms
5,376 KB
testcase_09 AC 39 ms
5,376 KB
testcase_10 AC 45 ms
5,376 KB
testcase_11 AC 28 ms
5,376 KB
testcase_12 AC 18 ms
5,376 KB
testcase_13 AC 33 ms
5,376 KB
testcase_14 AC 47 ms
5,708 KB
testcase_15 AC 49 ms
5,580 KB
testcase_16 AC 50 ms
5,584 KB
testcase_17 AC 49 ms
5,708 KB
testcase_18 AC 49 ms
5,584 KB
testcase_19 AC 54 ms
5,576 KB
testcase_20 AC 21 ms
5,376 KB
testcase_21 AC 28 ms
5,376 KB
testcase_22 AC 52 ms
5,580 KB
testcase_23 AC 7 ms
5,376 KB
testcase_24 AC 9 ms
5,376 KB
testcase_25 AC 10 ms
5,376 KB
testcase_26 AC 17 ms
5,376 KB
testcase_27 AC 24 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<bits/stdc++.h>

#define rep(i, n) for (int i = 0; i < (int) n; i++)

using ll = long long;
using namespace std;

const long long INF = 1ll << 60;

void chmax(ll &x, ll y) {
    x = max(x, y);
}

void chmin(ll &x, ll y) {
    x = min(x, y);
}

int main() {
    ll n;
    cin >> n;
    vector<ll> d;
    rep(i, n) {
        ll ci;
        cin >> ci;
        d.push_back(ci);
    };
    
    sort(d.begin(), d.end());
    
    deque<ll> c;
    for (auto di:d) c.push_back(di);
    
    ll ans = INF;
    // big big
    {
        deque<ll> ci = c;
        vector<ll> score(2, 0);
        rep(i, n) {
            score[i % 2] += ci.back();
            ci.pop_back();
        }
        chmin(ans, abs(score[0]) - abs(score[1]));
    }
    // big small
    {
        deque<ll> ci = c;
        vector<ll> score(2, 0);
        rep(i, n) {
            if (i % 2) {
                score[i % 2] += ci.front();
                ci.pop_front();
            } else {
                score[i % 2] += ci.back();
                ci.pop_back();
            }
        }
        chmin(ans, abs(score[0]) - abs(score[1]));
    }
    
    ll ans2 = -INF;
    // small big
    {
        deque<ll> ci = c;
        vector<ll> score(2, 0);
        rep(i, n) {
            if (i % 2) {
                score[i % 2] += ci.back();
                ci.pop_back();
            } else {
                score[i % 2] += ci.front();
                ci.pop_front();
            }
        }
        chmax(ans2, abs(score[0]) - abs(score[1]));
    }
    //  small small
    {
        deque<ll> ci = c;
        vector<ll> score(2, 0);
        rep(i, n) {
            score[i % 2] += ci.front();
            ci.pop_front();
        }
        chmin(ans2, abs(score[0]) - abs(score[1]));
    }
    cout << max(ans, ans2) << endl;
}
0