結果

問題 No.1906 Twinkle Town
ユーザー 👑 hitonanodehitonanode
提出日時 2022-02-05 01:59:47
言語 C++23(draft)
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 54 ms / 2,000 ms
コード長 734 bytes
コンパイル時間 1,046 ms
コンパイル使用メモリ 109,356 KB
実行使用メモリ 4,688 KB
最終ジャッジ日時 2023-09-02 06:38:27
合計ジャッジ時間 9,773 ms
ジャッジサーバーID
(参考情報)
judge15 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 1 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 37 ms
4,376 KB
testcase_04 AC 27 ms
4,380 KB
testcase_05 AC 37 ms
4,380 KB
testcase_06 AC 27 ms
4,380 KB
testcase_07 AC 38 ms
4,380 KB
testcase_08 AC 27 ms
4,380 KB
testcase_09 AC 37 ms
4,376 KB
testcase_10 AC 27 ms
4,380 KB
testcase_11 AC 37 ms
4,376 KB
testcase_12 AC 27 ms
4,380 KB
testcase_13 AC 37 ms
4,376 KB
testcase_14 AC 27 ms
4,384 KB
testcase_15 AC 36 ms
4,380 KB
testcase_16 AC 27 ms
4,380 KB
testcase_17 AC 37 ms
4,376 KB
testcase_18 AC 27 ms
4,380 KB
testcase_19 AC 37 ms
4,380 KB
testcase_20 AC 27 ms
4,380 KB
testcase_21 AC 46 ms
4,384 KB
testcase_22 AC 32 ms
4,380 KB
testcase_23 AC 46 ms
4,380 KB
testcase_24 AC 32 ms
4,380 KB
testcase_25 AC 45 ms
4,376 KB
testcase_26 AC 32 ms
4,380 KB
testcase_27 AC 46 ms
4,376 KB
testcase_28 AC 32 ms
4,376 KB
testcase_29 AC 51 ms
4,376 KB
testcase_30 AC 42 ms
4,380 KB
testcase_31 AC 52 ms
4,376 KB
testcase_32 AC 44 ms
4,380 KB
testcase_33 AC 52 ms
4,376 KB
testcase_34 AC 43 ms
4,380 KB
testcase_35 AC 51 ms
4,376 KB
testcase_36 AC 43 ms
4,376 KB
testcase_37 AC 53 ms
4,376 KB
testcase_38 AC 44 ms
4,380 KB
testcase_39 AC 54 ms
4,552 KB
testcase_40 AC 54 ms
4,688 KB
testcase_41 AC 54 ms
4,484 KB
testcase_42 AC 54 ms
4,556 KB
testcase_43 AC 54 ms
4,488 KB
testcase_44 AC 54 ms
4,412 KB
testcase_45 AC 25 ms
4,376 KB
testcase_46 AC 32 ms
4,380 KB
testcase_47 AC 27 ms
4,376 KB
testcase_48 AC 33 ms
4,380 KB
testcase_49 AC 38 ms
4,380 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

// 想定解
#include <algorithm>
#include <iostream>
#include <queue>
#include <vector>
using namespace std;


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

    int T;
    cin >> T;
    while (T--) {
        int N;
        cin >> N;
        vector<int> A(N);
        for (auto &x : A) cin >> x;
        sort(A.begin(), A.end());

        int all = A.back();
        for (int i = N - 1; i; --i) A[i] -= A[i - 1];

        priority_queue<int> pq;

        int last = 0;
        for (int i = 0; i < N; ++i) {
            pq.push(A[i]);
            if (i % 2 == 0) {
                last += pq.top();
                pq.pop();
            }
        }
        cout << ((N & 1) ? last : all - last) << '\n';
    }
}
0