結果

問題 No.1906 Twinkle Town
ユーザー hitonanodehitonanode
提出日時 2022-02-05 15:07:43
言語 C++23
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 389 ms / 2,000 ms
コード長 2,278 bytes
コンパイル時間 1,332 ms
コンパイル使用メモリ 109,972 KB
実行使用メモリ 6,012 KB
最終ジャッジ日時 2024-06-11 13:34:33
合計ジャッジ時間 10,910 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,376 KB
testcase_02 AC 1 ms
5,376 KB
testcase_03 AC 383 ms
5,376 KB
testcase_04 AC 362 ms
5,376 KB
testcase_05 AC 372 ms
5,376 KB
testcase_06 AC 372 ms
5,376 KB
testcase_07 AC 378 ms
5,376 KB
testcase_08 AC 359 ms
5,376 KB
testcase_09 AC 374 ms
5,376 KB
testcase_10 AC 369 ms
5,376 KB
testcase_11 AC 389 ms
5,376 KB
testcase_12 AC 349 ms
5,376 KB
testcase_13 AC 382 ms
5,376 KB
testcase_14 AC 360 ms
5,376 KB
testcase_15 AC 363 ms
5,376 KB
testcase_16 AC 373 ms
5,376 KB
testcase_17 AC 370 ms
5,376 KB
testcase_18 AC 360 ms
5,376 KB
testcase_19 AC 379 ms
5,376 KB
testcase_20 AC 376 ms
5,376 KB
testcase_21 AC 40 ms
5,376 KB
testcase_22 AC 27 ms
5,376 KB
testcase_23 AC 39 ms
5,376 KB
testcase_24 AC 26 ms
5,376 KB
testcase_25 AC 39 ms
5,376 KB
testcase_26 AC 27 ms
5,376 KB
testcase_27 AC 39 ms
5,376 KB
testcase_28 AC 28 ms
5,376 KB
testcase_29 AC 44 ms
5,376 KB
testcase_30 AC 36 ms
5,376 KB
testcase_31 AC 44 ms
5,376 KB
testcase_32 AC 38 ms
5,376 KB
testcase_33 AC 46 ms
5,376 KB
testcase_34 AC 36 ms
5,376 KB
testcase_35 AC 48 ms
5,376 KB
testcase_36 AC 36 ms
5,376 KB
testcase_37 AC 46 ms
5,688 KB
testcase_38 AC 38 ms
5,376 KB
testcase_39 AC 48 ms
5,888 KB
testcase_40 AC 48 ms
5,884 KB
testcase_41 AC 51 ms
5,968 KB
testcase_42 AC 51 ms
5,888 KB
testcase_43 AC 51 ms
5,884 KB
testcase_44 AC 49 ms
6,012 KB
testcase_45 AC 28 ms
5,376 KB
testcase_46 AC 111 ms
5,376 KB
testcase_47 AC 95 ms
5,376 KB
testcase_48 AC 28 ms
5,376 KB
testcase_49 AC 34 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// N <= 12 では bit dp の愚直解をやる
// 想定解壊れてないかチェック
#include <algorithm>
#include <iostream>
#include <queue>
#include <vector>
using namespace std;

using lint = long long;

lint bitdp(int N, vector<lint> A) {
    for (int i = N - 1; i; --i) A[i] -= A[i - 1];
    vector<lint> dp(1 << N);
    const lint INF = (1LL << 60) - 1;
    for (int S = 1; S < 1 << N; ++S) {
        bool is_senteban = ((N & 1) == (__builtin_popcount(S) & 1));
        if (is_senteban) {
            dp[S] = -INF;
        } else {
            dp[S] = INF;
        }
        for (int i = 0; i < N; ++i) {
            if (((S >> i) & 1) == 0) continue;
            int addval = 0;
            if (is_senteban and S - (1 << i) < (1 << i)) {
                int cur = i;
                while (cur >= 0 and ((S - (1 << i)) & (1 << cur)) == 0) {
                    addval += A[cur];
                    --cur;
                }
            }
            if (is_senteban) {
                dp[S] = max(dp[S], dp[S - (1 << i)] + addval);
            } else {
                dp[S] = min(dp[S], dp[S - (1 << i)]);
            }
        }
    }
    return dp.back();
}

lint ac_solution(const vector<lint> &A) {
    const int N = A.size();
    priority_queue<lint> pq;
    lint last = 0;
    for (int i = 0; i < N; ++i) {
        pq.push(A[i] - (i ? A[i - 1] : 0));
        if (i % 2 == 0) {
            last += pq.top();
            pq.pop();
        }
    }
    return N % 2 ? last : A.back() - last;
}

int main() {
    cin.tie(nullptr);
    ios::sync_with_stdio(false);

    int T;
    cin >> T;
    while (T--) {
        int N;
        cin >> N;
        vector<lint> A(N);
        for (auto &x : A) cin >> x;
        sort(A.begin(), A.end());
        if (N <= 12) {
            lint sol_brutefore = bitdp(N, A);
            lint ans = ac_solution(A);
            if (sol_brutefore != ans) {
                cerr << sol_brutefore << ' ' << ans << ' ' << N;
                for (auto a : A) cerr << ' ' << a;
                cerr << endl;
                throw;
            }
            cout << ans << '\n';
        } else {
            cout << ac_solution(A) << '\n';
        }
    }
}
0