結果

問題 No.837 Noelちゃんと星々2
ユーザー veqccveqcc
提出日時 2019-06-15 00:53:58
言語 C++14
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 19 ms / 2,000 ms
コード長 1,383 bytes
コンパイル時間 1,061 ms
コンパイル使用メモリ 104,816 KB
実行使用メモリ 5,376 KB
最終ジャッジ日時 2024-06-11 14:18:59
合計ジャッジ時間 1,957 ms
ジャッジサーバーID
(参考情報)
judge4 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 19 ms
5,248 KB
testcase_01 AC 19 ms
5,376 KB
testcase_02 AC 19 ms
5,376 KB
testcase_03 AC 19 ms
5,376 KB
testcase_04 AC 19 ms
5,376 KB
testcase_05 AC 19 ms
5,376 KB
testcase_06 AC 19 ms
5,376 KB
testcase_07 AC 19 ms
5,376 KB
testcase_08 AC 18 ms
5,376 KB
testcase_09 AC 2 ms
5,376 KB
testcase_10 AC 1 ms
5,376 KB
testcase_11 AC 2 ms
5,376 KB
testcase_12 AC 2 ms
5,376 KB
testcase_13 AC 1 ms
5,376 KB
testcase_14 AC 2 ms
5,376 KB
testcase_15 AC 1 ms
5,376 KB
testcase_16 AC 1 ms
5,376 KB
testcase_17 AC 2 ms
5,376 KB
testcase_18 AC 1 ms
5,376 KB
testcase_19 AC 1 ms
5,376 KB
testcase_20 AC 1 ms
5,376 KB
testcase_21 AC 1 ms
5,376 KB
testcase_22 AC 2 ms
5,376 KB
testcase_23 AC 2 ms
5,376 KB
testcase_24 AC 2 ms
5,376 KB
testcase_25 AC 2 ms
5,376 KB
testcase_26 AC 1 ms
5,376 KB
testcase_27 AC 2 ms
5,376 KB
testcase_28 AC 2 ms
5,376 KB
testcase_29 AC 1 ms
5,376 KB
testcase_30 AC 2 ms
5,376 KB
testcase_31 AC 2 ms
5,376 KB
testcase_32 AC 1 ms
5,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <algorithm>
#include <iostream>
#include <iomanip>
#include <cstring>
#include <string>
#include <vector>
#include <random>
#include <bitset>
#include <queue>
#include <cmath>
#include <stack>
#include <set>
#include <map>
typedef long long ll;
using namespace std;
const ll MOD = 1000000007LL;

int main() {
    cin.sync_with_stdio(false);
    cin.tie(0);
    cout.tie(0);

    int n;
    cin >> n;

    ll y[n];
    for (int i = 0; i < n; i++) cin >> y[i];

    sort(y, y+n);

    if (y[0] == y[n-1]) {
        cout << 1 << "\n";
        return 0;
    }

    int idx1 = 0;
    ll l = 0;
    bool pre_odd = true;

    int idx2 = (n + 1) / 2;
    ll r = 0;
    bool pos_odd = n % 2 == 0;

    for (int i = 1; i < n; i++) {
        if (i < idx2) {
            r -= y[i];
        } else if (i > idx2 || !pos_odd) {
            r += y[i];
        }
    }

    ll ans = l + r;

    for (int i = 1; i < n - 1; i++) {
        // iを後ろから前に移動する
        l += y[i];
        l -= y[idx1];
        if (pre_odd) {
            idx1++;
            pre_odd = false;
        } else {
            pre_odd = true;
        }

        r += y[i];
        r -= y[idx2];
        if (pos_odd) {
            idx2++;
            pos_odd = false;
        } else {
            pos_odd = true;
        }

        ans = min(ans, l + r);
    }

    cout << ans << "\n";
    return 0;
}
0