結果

問題 No.545 ママの大事な二人の子供
ユーザー 👑 jupirojupiro
提出日時 2020-07-15 07:18:26
言語 C++17
(gcc 12.3.0 + boost 1.83.0)
結果
MLE  
実行時間 -
コード長 2,378 bytes
コンパイル時間 1,639 ms
コンパイル使用メモリ 137,112 KB
実行使用メモリ 814,244 KB
最終ジャッジ日時 2024-05-01 00:40:29
合計ジャッジ時間 5,812 ms
ジャッジサーバーID
(参考情報)
judge1 / judge4
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
6,812 KB
testcase_01 AC 2 ms
6,944 KB
testcase_02 AC 2 ms
6,944 KB
testcase_03 AC 2 ms
6,940 KB
testcase_04 AC 2 ms
6,940 KB
testcase_05 AC 2 ms
6,940 KB
testcase_06 AC 2 ms
6,940 KB
testcase_07 AC 2 ms
6,944 KB
testcase_08 AC 2 ms
6,940 KB
testcase_09 AC 2 ms
6,944 KB
testcase_10 AC 2 ms
6,940 KB
testcase_11 AC 2 ms
6,944 KB
testcase_12 AC 2 ms
6,940 KB
testcase_13 AC 3 ms
6,944 KB
testcase_14 AC 3 ms
6,940 KB
testcase_15 AC 2 ms
6,940 KB
testcase_16 AC 5 ms
6,944 KB
testcase_17 AC 13 ms
8,668 KB
testcase_18 AC 144 ms
85,456 KB
testcase_19 AC 559 ms
331,068 KB
testcase_20 MLE -
testcase_21 -- -
testcase_22 -- -
testcase_23 -- -
testcase_24 -- -
testcase_25 -- -
testcase_26 -- -
testcase_27 -- -
testcase_28 -- -
testcase_29 -- -
testcase_30 -- -
testcase_31 -- -
権限があれば一括ダウンロードができます

ソースコード

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;
        auto ta1 = a, tb1 = b;
        vector<ll> ta2, tb2;
        while (!ta1.size() > h) {
            ta2.emplace_back(ta1.back());
            tb2.emplace_back(tb1.back());
            ta1.pop_back();
            tb2.pop_back();
        }
        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