結果
問題 | No.2918 Divide Applicants Fairly |
ユーザー | けいと |
提出日時 | 2024-10-09 00:34:38 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
WA
|
実行時間 | - |
コード長 | 1,810 bytes |
コンパイル時間 | 2,843 ms |
コンパイル使用メモリ | 180,868 KB |
実行使用メモリ | 25,564 KB |
最終ジャッジ日時 | 2024-10-09 00:34:45 |
合計ジャッジ時間 | 5,364 ms |
ジャッジサーバーID (参考情報) |
judge3 / judge1 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | WA | - |
testcase_01 | WA | - |
testcase_02 | AC | 2 ms
5,248 KB |
testcase_03 | AC | 21 ms
5,248 KB |
testcase_04 | AC | 7 ms
5,248 KB |
testcase_05 | AC | 2 ms
5,248 KB |
testcase_06 | WA | - |
testcase_07 | WA | - |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | WA | - |
testcase_10 | AC | 147 ms
11,232 KB |
testcase_11 | AC | 3 ms
5,248 KB |
testcase_12 | WA | - |
testcase_13 | WA | - |
testcase_14 | WA | - |
testcase_15 | AC | 5 ms
5,248 KB |
testcase_16 | AC | 299 ms
19,688 KB |
testcase_17 | WA | - |
testcase_18 | WA | - |
testcase_19 | AC | 2 ms
5,248 KB |
testcase_20 | WA | - |
testcase_21 | WA | - |
testcase_22 | WA | - |
testcase_23 | WA | - |
testcase_24 | AC | 146 ms
11,232 KB |
testcase_25 | AC | 4 ms
5,248 KB |
testcase_26 | WA | - |
testcase_27 | AC | 2 ms
5,248 KB |
testcase_28 | WA | - |
testcase_29 | WA | - |
testcase_30 | AC | 12 ms
5,248 KB |
testcase_31 | WA | - |
testcase_32 | AC | 293 ms
19,724 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 | 2 ms
5,248 KB |
testcase_37 | WA | - |
testcase_38 | WA | - |
testcase_39 | AC | 4 ms
5,248 KB |
testcase_40 | AC | 2 ms
5,248 KB |
testcase_41 | AC | 2 ms
5,248 KB |
testcase_42 | AC | 2 ms
5,248 KB |
testcase_43 | AC | 2 ms
5,248 KB |
testcase_44 | AC | 3 ms
5,248 KB |
testcase_45 | AC | 3 ms
5,248 KB |
testcase_46 | AC | 251 ms
25,564 KB |
testcase_47 | WA | - |
testcase_48 | WA | - |
testcase_49 | WA | - |
testcase_50 | WA | - |
testcase_51 | WA | - |
testcase_52 | WA | - |
testcase_53 | WA | - |
testcase_54 | WA | - |
testcase_55 | WA | - |
testcase_56 | WA | - |
testcase_57 | AC | 2 ms
5,248 KB |
testcase_58 | WA | - |
testcase_59 | AC | 2 ms
5,248 KB |
testcase_60 | WA | - |
testcase_61 | WA | - |
testcase_62 | WA | - |
testcase_63 | AC | 2 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; typedef long long ll; void generate_subset_sums(const vector<int>& nums, vector<vector<ll>>& subset_sums) { int n = nums.size(); subset_sums.resize(n + 1, vector<ll>()); for(int mask = 0; mask < (1 << n); ++mask){ int k = __builtin_popcount(mask); ll sum = 0; for(int i = 0; i < n; ++i){ if(mask & (1 << i)){ sum += nums[i]; } } subset_sums[k].push_back(sum); } } int main(){ ios::sync_with_stdio(false); cin.tie(0); int N; cin >> N; vector<int> R(N); for(int &x : R) cin >> x; int N1 = N / 2; int N2 = N - N1; vector<int> left_nums(R.begin(), R.begin() + N1); vector<int> right_nums(R.begin() + N1, R.end()); vector<vector<ll>> left_subsets, right_subsets; generate_subset_sums(left_nums, left_subsets); generate_subset_sums(right_nums, right_subsets); ll min_diff = LLONG_MAX; for(int k = 1; k <= min(N/2, max(N1, N2)); ++k){ if(k > N1 || k > N2) continue; const vector<ll>& left_sums = left_subsets[k]; const vector<ll>& right_sums = right_subsets[k]; vector<ll> sorted_right_sums = right_sums; sort(sorted_right_sums.begin(), sorted_right_sums.end()); for(auto sum1 : left_sums){ auto it = lower_bound(sorted_right_sums.begin(), sorted_right_sums.end(), sum1); if(it != sorted_right_sums.end()){ ll sum2 = *it; min_diff = min(min_diff, abs(sum1 - sum2)); } if(it != sorted_right_sums.begin()){ it--; ll sum2 = *it; min_diff = min(min_diff, abs(sum1 - sum2)); } } } cout << min_diff << "\n"; }