結果

問題 No.2918 Divide Applicants Fairly
ユーザー PNJPNJ
提出日時 2024-10-07 16:04:19
言語 C++23(gcc13)
(gcc 13.2.0 + boost 1.83.0)
結果
TLE  
実行時間 -
コード長 1,654 bytes
コンパイル時間 2,934 ms
コンパイル使用メモリ 117,756 KB
実行使用メモリ 178,044 KB
最終ジャッジ日時 2024-10-07 16:04:31
合計ジャッジ時間 11,722 ms
ジャッジサーバーID
(参考情報)
judge3 / judge5
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,816 KB
testcase_01 AC 2 ms
6,816 KB
testcase_02 AC 2 ms
6,816 KB
testcase_03 AC 2 ms
6,820 KB
testcase_04 AC 2 ms
6,820 KB
testcase_05 AC 1 ms
6,816 KB
testcase_06 AC 2 ms
6,816 KB
testcase_07 AC 2 ms
6,820 KB
testcase_08 AC 2 ms
6,816 KB
testcase_09 AC 7 ms
6,816 KB
testcase_10 AC 2 ms
6,816 KB
testcase_11 AC 1,149 ms
91,032 KB
testcase_12 AC 5 ms
6,816 KB
testcase_13 AC 3 ms
6,820 KB
testcase_14 AC 2 ms
6,820 KB
testcase_15 AC 2 ms
6,816 KB
testcase_16 AC 2 ms
6,820 KB
testcase_17 AC 5 ms
6,816 KB
testcase_18 AC 1,141 ms
90,492 KB
testcase_19 AC 2 ms
6,820 KB
testcase_20 AC 463 ms
46,340 KB
testcase_21 AC 5 ms
6,820 KB
testcase_22 AC 2 ms
6,816 KB
testcase_23 AC 7 ms
6,816 KB
testcase_24 AC 1 ms
6,820 KB
testcase_25 TLE -
testcase_26 AC 2 ms
6,820 KB
testcase_27 AC 260 ms
28,024 KB
testcase_28 AC 2 ms
6,820 KB
testcase_29 AC 2 ms
6,816 KB
testcase_30 AC 2 ms
6,816 KB
testcase_31 AC 2 ms
6,820 KB
testcase_32 AC 2 ms
6,820 KB
testcase_33 AC 2 ms
6,820 KB
testcase_34 AC 2 ms
6,816 KB
testcase_35 AC 2 ms
6,816 KB
testcase_36 AC 250 ms
26,756 KB
testcase_37 AC 110 ms
15,208 KB
testcase_38 AC 64 ms
8,516 KB
testcase_39 AC 2 ms
6,820 KB
testcase_40 AC 24 ms
8,516 KB
testcase_41 AC 39 ms
13,288 KB
testcase_42 AC 91 ms
27,216 KB
testcase_43 AC 149 ms
46,284 KB
testcase_44 AC 356 ms
91,088 KB
testcase_45 AC 616 ms
173,516 KB
testcase_46 AC 2 ms
6,820 KB
testcase_47 AC 1 ms
6,820 KB
testcase_48 AC 7 ms
6,820 KB
testcase_49 AC 111 ms
14,880 KB
testcase_50 AC 2 ms
6,816 KB
testcase_51 AC 7 ms
6,816 KB
testcase_52 AC 63 ms
8,520 KB
testcase_53 AC 16 ms
6,816 KB
testcase_54 AC 16 ms
6,816 KB
testcase_55 AC 28 ms
6,816 KB
testcase_56 AC 26 ms
6,820 KB
testcase_57 AC 263 ms
28,092 KB
testcase_58 AC 26 ms
6,816 KB
testcase_59 AC 27 ms
6,820 KB
testcase_60 AC 2 ms
6,820 KB
testcase_61 AC 27 ms
6,820 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <iostream>
#include <vector>
#include <algorithm>
#include <limits>
#include <stack>

using namespace std;

long long popcount(long long n) {
    long long c = (n & 0x5555555555555555) + ((n >> 1) & 0x5555555555555555);
    c = (c & 0x3333333333333333) + ((c >> 2) & 0x3333333333333333);
    c = (c & 0x0f0f0f0f0f0f0f0f) + ((c >> 4) & 0x0f0f0f0f0f0f0f0f);
    c = (c & 0x00ff00ff00ff00ff) + ((c >> 8) & 0x00ff00ff00ff00ff);
    c = (c & 0x0000ffff0000ffff) + ((c >> 16) & 0x0000ffff0000ffff);
    c = (c & 0x00000000ffffffff) + ((c >> 32) & 0x00000000ffffffff);
    return c;
}

struct StackElement {
    long long r;
    int c;
    int i;
};

int main() {
    int N;
    cin >> N;
    vector<int> R(N);
    for (int i = 0; i < N; ++i) {
        cin >> R[i];
    }

    if (N >= 26) {
        cout << 0 << endl;
        return 0;
    }

    vector<vector<long long>> dp(N + 1);
    stack<StackElement> stack;
    stack.push({0, 0, -1});

    while (!stack.empty()) {
        StackElement element = stack.top();
        stack.pop();
        dp[element.c].push_back(element.r);
        if ((element.c + 1) * 2 > N) {
            continue;
        }
        for (int j = element.i + 1; j < N; ++j) {
            stack.push({element.r + R[j], element.c + 1, j});
        }
    }

    long long ans = numeric_limits<long long>::max();
    for (int n = 1; n <= N; ++n) {
        if (2 * n > N) {
            break;
        }
        int le = dp[n].size();
        sort(dp[n].begin(), dp[n].end());
        for (int i = 0; i < le - 1; ++i) {
            ans = min(ans, dp[n][i + 1] - dp[n][i]);
        }
    }
    cout << ans << endl;
    return 0;
}
0