結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | tossy |
提出日時 | 2017-07-14 23:48:44 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.0) |
結果 |
AC
|
実行時間 | 22 ms / 2,000 ms |
コード長 | 1,559 bytes |
コンパイル時間 | 1,716 ms |
コンパイル使用メモリ | 173,916 KB |
実行使用メモリ | 5,248 KB |
最終ジャッジ日時 | 2024-10-08 00:02:03 |
合計ジャッジ時間 | 2,900 ms |
ジャッジサーバーID (参考情報) |
judge4 / judge3 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
5,248 KB |
testcase_01 | AC | 2 ms
5,248 KB |
testcase_02 | AC | 1 ms
5,248 KB |
testcase_03 | AC | 2 ms
5,248 KB |
testcase_04 | AC | 2 ms
5,248 KB |
testcase_05 | AC | 1 ms
5,248 KB |
testcase_06 | AC | 1 ms
5,248 KB |
testcase_07 | AC | 1 ms
5,248 KB |
testcase_08 | AC | 2 ms
5,248 KB |
testcase_09 | AC | 2 ms
5,248 KB |
testcase_10 | AC | 2 ms
5,248 KB |
testcase_11 | AC | 2 ms
5,248 KB |
testcase_12 | AC | 1 ms
5,248 KB |
testcase_13 | AC | 2 ms
5,248 KB |
testcase_14 | AC | 1 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 1 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 3 ms
5,248 KB |
testcase_19 | AC | 3 ms
5,248 KB |
testcase_20 | AC | 4 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | AC | 11 ms
5,248 KB |
testcase_23 | AC | 22 ms
5,248 KB |
testcase_24 | AC | 8 ms
5,248 KB |
testcase_25 | AC | 19 ms
5,248 KB |
testcase_26 | AC | 20 ms
5,248 KB |
testcase_27 | AC | 15 ms
5,248 KB |
testcase_28 | AC | 21 ms
5,248 KB |
testcase_29 | AC | 18 ms
5,248 KB |
testcase_30 | AC | 19 ms
5,248 KB |
testcase_31 | AC | 20 ms
5,248 KB |
ソースコード
#include <bits/stdc++.h> using namespace std; #define repl(i,a,b) for(int i=(int)(a);i<(int)(b);i++) #define rep(i,n) repl(i,0,n) #define mp(a,b) make_pair((a),(b)) #define pb(a) push_back((a)) #define all(x) (x).begin(),(x).end() #define uniq(x) sort(all(x)),(x).erase(unique(all(x)),end(x)) #define fi first #define se second #define dbg(...) _dbg(#__VA_ARGS__, __VA_ARGS__) void _dbg(string){cout<<endl;} template<class H,class... T> void _dbg(string s,H h,T... t){int l=s.find(',');cout<<s.substr(0,l)<<" = "<<h<<", ";_dbg(s.substr(l+1),t...);} template<class T,class U> ostream& operator<<(ostream& o, const pair<T,U> &p){o<<"("<<p.fi<<","<<p.se<<")";return o;} template<class T> ostream& operator<<(ostream& o, const vector<T> &v){o<<"[";for(T t:v){o<<t<<",";}o<<"]";return o;} #define INF 1120000000 int main(){ int n; cin>>n; vector<long> a(n),b(n); rep(i,n) cin>>a[i]>>b[i]; if(n==1){ cout << min(a[0],b[0]) << endl; return 0; } int m = n/2; vector<long> v(1<<m,0); rep(mask, 1<<m){ rep(i,m){ if(mask&(1<<i)) v[mask] += a[i]; else v[mask] -= b[i]; } } uniq(v); long ans = 1234567890234567890L; m = (n+1)/2; rep(mask, 1<<m){ long tmp = 0; rep(i,m){ if(mask&(1<<i)) tmp += a[n/2 + i]; else tmp -= b[n/2 + i]; } auto idx = lower_bound(all(v), -tmp) - v.begin(); for(int i = max<int>(0,idx-2); i<=min<int>(v.size()-1,idx+2); i++){ ans = min(ans, abs(tmp + v[i])); } } assert(ans !=1234567890234567890L); cout << ans << endl; return 0; }