結果

問題 No.545 ママの大事な二人の子供
ユーザー 👑 jupirojupiro
提出日時 2020-07-15 07:26:54
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
AC  
実行時間 7 ms / 2,000 ms
コード長 2,421 bytes
コンパイル時間 1,395 ms
コンパイル使用メモリ 134,408 KB
実行使用メモリ 5,136 KB
最終ジャッジ日時 2023-08-13 06:54:47
合計ジャッジ時間 2,667 ms
ジャッジサーバーID
(参考情報)
judge11 / judge15
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,380 KB
testcase_01 AC 2 ms
4,380 KB
testcase_02 AC 1 ms
4,380 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 2 ms
4,380 KB
testcase_05 AC 1 ms
4,380 KB
testcase_06 AC 1 ms
4,380 KB
testcase_07 AC 2 ms
4,376 KB
testcase_08 AC 2 ms
4,380 KB
testcase_09 AC 1 ms
4,380 KB
testcase_10 AC 2 ms
4,376 KB
testcase_11 AC 2 ms
4,376 KB
testcase_12 AC 2 ms
4,380 KB
testcase_13 AC 2 ms
4,376 KB
testcase_14 AC 1 ms
4,376 KB
testcase_15 AC 1 ms
4,380 KB
testcase_16 AC 1 ms
4,376 KB
testcase_17 AC 2 ms
4,376 KB
testcase_18 AC 2 ms
4,376 KB
testcase_19 AC 2 ms
4,380 KB
testcase_20 AC 2 ms
4,376 KB
testcase_21 AC 1 ms
4,376 KB
testcase_22 AC 4 ms
4,380 KB
testcase_23 AC 7 ms
5,124 KB
testcase_24 AC 3 ms
4,376 KB
testcase_25 AC 6 ms
5,076 KB
testcase_26 AC 7 ms
4,936 KB
testcase_27 AC 6 ms
5,136 KB
testcase_28 AC 7 ms
5,132 KB
testcase_29 AC 6 ms
5,128 KB
testcase_30 AC 6 ms
5,072 KB
testcase_31 AC 6 ms
5,080 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <iostream>
#include <string>
#include <sstream>
#include <stack>
#include <algorithm>
#include <cmath>
#include <queue>
#include <map>
#include <set>
#include <cstdlib>
#include <bitset>
#include <tuple>
#include <assert.h>
#include <deque>
#include <bitset>
#include <iomanip>
#include <limits>
#include <chrono>
#include <random>
#include <array>
#include <unordered_map>
#include <functional>
#include <complex>
#include <numeric>
template<class T> inline bool chmax(T& a, T b) { if (a < b) { a = b; return 1; } return 0; }
template<class T> inline bool chmin(T& a, T b) { if (a > b) { a = b; return 1; } return 0; }
//constexpr long long MAX = 5100000;
constexpr long long INF = 1LL << 60;
constexpr int inf = 1000000007;
constexpr long long mod = 1000000007LL;
//constexpr long long mod = 998244353LL;
const long double PI = acos((long double)(-1));

using namespace std;
typedef unsigned long long ull;
typedef long long ll;
typedef long double ld;

vector<ll> BruteForce(vector<ll>& a, vector<ll>& b) {
    int n = a.size();
    vector<ll> res; res.emplace_back(0);
    for (int i = 0; i < n; i++) {
        vector<ll> cur1;
        vector<ll> cur2;
        for (auto p : res) {
            cur1.emplace_back(p - b[i]);
            cur2.emplace_back(p + a[i]);
        }
        res.clear(); res.resize(cur1.size() + cur2.size());
        merge(cur1.begin(), cur1.end(), cur2.begin(), cur2.end(), res.begin());
    }
    return res;
}

int main()
{
    /*
    cin.tie(nullptr);
    ios::sync_with_stdio(false);
    */

    int n; scanf("%d", &n);
    vector<ll> a(n), b(n); for (int i = 0; i < n; i++) scanf("%lld %lld", &a[i], &b[i]);
    vector<ll> v1, v2;
    {
        int h = n / 2;
        vector<ll> ta1, tb1, ta2, tb2;
        ta1.reserve(h), tb1.reserve(h), ta2.reserve(n - h), tb2.reserve(n - h);
        for (int i = 0; i < h; i++) ta1.emplace_back(a[i]), tb1.emplace_back(b[i]);
        for (int i = h; i < n; i++) ta2.emplace_back(a[i]), tb2.emplace_back(b[i]);
        v1 = BruteForce(ta1, tb1);
        v2 = BruteForce(ta2, tb2);
        reverse(v1.begin(), v1.end());
    }
    int cur = 0;
    ll res = INF;
    for (int i = 0; i < v1.size(); i++) {
        while (cur < v2.size() and v1[i] + v2[cur] < 0) cur++;
        if (cur) chmin(res, -(v1[i] + v2[cur - 1]));
        if (cur < v2.size()) chmin(res, v1[i] + v2[cur]);
    }
    cout << res << endl;
    return 0;
}
0