結果

問題 No.2918 Divide Applicants Fairly
ユーザー HIcoderHIcoder
提出日時 2024-10-10 21:47:52
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 642 ms / 2,000 ms
コード長 1,168 bytes
コンパイル時間 1,448 ms
コンパイル使用メモリ 126,052 KB
実行使用メモリ 36,304 KB
最終ジャッジ日時 2024-10-10 21:47:58
合計ジャッジ時間 5,487 ms
ジャッジサーバーID
(参考情報)
judge4 / judge2
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,248 KB
testcase_01 AC 2 ms
5,248 KB
testcase_02 AC 2 ms
5,248 KB
testcase_03 AC 2 ms
5,248 KB
testcase_04 AC 2 ms
5,248 KB
testcase_05 AC 2 ms
5,248 KB
testcase_06 AC 2 ms
5,248 KB
testcase_07 AC 2 ms
5,248 KB
testcase_08 AC 2 ms
5,248 KB
testcase_09 AC 4 ms
5,248 KB
testcase_10 AC 2 ms
5,248 KB
testcase_11 AC 329 ms
19,916 KB
testcase_12 AC 3 ms
5,248 KB
testcase_13 AC 2 ms
5,248 KB
testcase_14 AC 2 ms
5,248 KB
testcase_15 AC 2 ms
5,248 KB
testcase_16 AC 2 ms
5,248 KB
testcase_17 AC 3 ms
5,248 KB
testcase_18 AC 329 ms
19,792 KB
testcase_19 AC 2 ms
5,248 KB
testcase_20 AC 160 ms
11,728 KB
testcase_21 AC 3 ms
5,248 KB
testcase_22 AC 2 ms
5,248 KB
testcase_23 AC 4 ms
5,248 KB
testcase_24 AC 2 ms
5,248 KB
testcase_25 AC 642 ms
36,304 KB
testcase_26 AC 2 ms
5,248 KB
testcase_27 AC 80 ms
7,632 KB
testcase_28 AC 2 ms
5,248 KB
testcase_29 AC 2 ms
5,248 KB
testcase_30 AC 2 ms
5,248 KB
testcase_31 AC 2 ms
5,248 KB
testcase_32 AC 2 ms
5,248 KB
testcase_33 AC 2 ms
5,248 KB
testcase_34 AC 2 ms
5,248 KB
testcase_35 AC 2 ms
5,248 KB
testcase_36 AC 76 ms
7,508 KB
testcase_37 AC 40 ms
5,456 KB
testcase_38 AC 22 ms
5,248 KB
testcase_39 AC 2 ms
5,248 KB
testcase_40 AC 9 ms
5,248 KB
testcase_41 AC 16 ms
5,584 KB
testcase_42 AC 31 ms
7,588 KB
testcase_43 AC 56 ms
11,724 KB
testcase_44 AC 116 ms
19,660 KB
testcase_45 AC 245 ms
36,172 KB
testcase_46 AC 2 ms
5,248 KB
testcase_47 AC 2 ms
5,248 KB
testcase_48 AC 4 ms
5,248 KB
testcase_49 AC 40 ms
5,588 KB
testcase_50 AC 2 ms
5,248 KB
testcase_51 AC 5 ms
5,248 KB
testcase_52 AC 21 ms
5,248 KB
testcase_53 AC 7 ms
5,248 KB
testcase_54 AC 7 ms
5,248 KB
testcase_55 AC 12 ms
5,248 KB
testcase_56 AC 12 ms
5,248 KB
testcase_57 AC 82 ms
7,760 KB
testcase_58 AC 11 ms
5,248 KB
testcase_59 AC 11 ms
5,248 KB
testcase_60 AC 2 ms
5,248 KB
testcase_61 AC 11 ms
5,248 KB
testcase_62 AC 3 ms
5,248 KB
testcase_63 AC 3 ms
5,248 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include<iostream>
#include<string>
#include<queue>
#include<vector>
#include<cassert>
#include<random>
#include<set>
#include<map>
#include<cassert>
#include<unordered_map>
#include<bitset>
#include<numeric>
#include<algorithm>
using namespace std;
typedef long long ll;
const int inf=1<<30;
const ll INF=1LL<<62;
typedef pair<int,ll> P;
typedef pair<int,P> PP; 
const ll MOD=998244353;

int popcount(int x){
    return __builtin_popcount(x);
}

int top_bit(int x){
    if(x==0) return -1;
    return 31-__builtin_clz(x);
}

int main(){
    int N;
    cin>>N;
    vector<ll> R(N);
    for(int i=0;i<N;i++){
        cin>>R[i];
    }
    if(N>25){
        cout<<0<<endl;
        return 0;
    }

    //N<=25

    vector<int> comb;
    auto exh=[&](auto f,int bit,int sum){
        if(popcount(bit)==N/2){
            comb.push_back(sum);
            return;
        }
        for(int i=top_bit(bit)+1;i<N-N/2+popcount(bit)+1;i++){
            f(f,bit|(1<<i),sum+R[i]);
        }
    };

    exh(exh,0,0);
    sort(comb.begin(),comb.end());
    int ans=inf;
    for(int i=0;i+1<comb.size();i++){
        ans=min(ans,abs(comb[i]-comb[i+1]));
    }
    cout<<ans<<endl;
}
0