結果
問題 |
No.545 ママの大事な二人の子供
|
ユーザー |
![]() |
提出日時 | 2017-07-14 22:51:05 |
言語 | C++14 (gcc 13.3.0 + boost 1.87.0) |
結果 |
TLE
|
実行時間 | - |
コード長 | 1,786 bytes |
コンパイル時間 | 1,077 ms |
コンパイル使用メモリ | 92,300 KB |
実行使用メモリ | 13,216 KB |
最終ジャッジ日時 | 2024-10-07 23:45:50 |
合計ジャッジ時間 | 5,313 ms |
ジャッジサーバーID (参考情報) |
judge1 / judge4 |
(要ログイン)
ファイルパターン | 結果 |
---|---|
other | AC * 22 TLE * 1 -- * 9 |
ソースコード
#include<iostream> #include<math.h> #include<vector> #include<algorithm> #include<queue> #include<set> #include<map> #define REP(i, n) for(long long i = 0; i < n; ++i) #define ALL(a) a.begin(), a.end() #define INF (long long)1000000000 using namespace std; typedef long long ll; typedef pair<ll, ll> P; int main() { int n; cin>>n; vector<P> a(n); REP(i, n) cin>>a[i].first>>a[i].second; int half = n/2; set<ll> aover1; set<ll> bover1; set<ll> aover2; set<ll> bover2; for(ll bit = 0; bit < (1<<half); ++bit) { ll asum = 0, bsum = 0; REP(i, half) { if((bit>>i)&1) asum += a[i].first; else bsum += a[i].second; } if(asum >= bsum) aover1.insert(asum - bsum); if(asum <= bsum) bover1.insert(bsum - asum); } for(ll bit = 0; bit < (1<<(n - half)); ++bit) { ll asum = 0, bsum = 0; REP(i, n - half) { if((bit>>i)&1) asum += a[half + i].first; else bsum += a[half + i].second; } if(asum >= bsum) aover2.insert(asum - bsum); if(asum <= bsum) bover2.insert(bsum - asum); } ll res = INF * INF; if(aover1.size() > 0 && aover2.size() > 0) res = min(res, *(aover1.begin()) + *(aover2.begin())); if(bover1.size() > 0 && bover2.size() > 0) res = min(res, *(bover1.begin()) + *(bover2.begin())); auto ite1 = aover1.begin(); while(ite1 != aover1.end()) { auto ite2 = lower_bound(ALL(bover2), *ite1); if(ite2 != bover2.end()) { res = min(res, abs(*ite1 - *ite2)); } if(ite2 != bover2.begin()) { res = min(res, abs(*ite1 - *(--ite2))); } ++ite1; } auto ite3 = bover1.begin(); while(ite3 != bover1.end()) { auto ite4 = lower_bound(ALL(aover2), *ite3); if(ite4 != aover2.end()) { res = min(res, abs(*ite3 - *ite4)); } if(ite4 != aover2.begin()) { res = min(res, abs(*ite3 - *(--ite4))); } ++ite3; } cout<<res<<endl; }