結果
問題 | No.545 ママの大事な二人の子供 |
ユーザー | gzlcp |
提出日時 | 2017-07-14 22:51:05 |
言語 | C++14 (gcc 12.3.0 + boost 1.83.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 |
(要ログイン)
テストケース
テストケース表示入力 | 結果 | 実行時間 実行使用メモリ |
---|---|---|
testcase_00 | AC | 2 ms
10,496 KB |
testcase_01 | AC | 1 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 | 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 | 2 ms
5,248 KB |
testcase_15 | AC | 2 ms
5,248 KB |
testcase_16 | AC | 2 ms
5,248 KB |
testcase_17 | AC | 2 ms
5,248 KB |
testcase_18 | AC | 31 ms
5,248 KB |
testcase_19 | AC | 160 ms
5,248 KB |
testcase_20 | AC | 552 ms
5,248 KB |
testcase_21 | AC | 2 ms
5,248 KB |
testcase_22 | TLE | - |
testcase_23 | -- | - |
testcase_24 | -- | - |
testcase_25 | -- | - |
testcase_26 | -- | - |
testcase_27 | -- | - |
testcase_28 | -- | - |
testcase_29 | -- | - |
testcase_30 | -- | - |
testcase_31 | -- | - |
ソースコード
#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; }