제출 #397642

#제출 시각아이디문제언어결과실행 시간메모리
397642VictorCloud Computing (CEOI18_clo)C++17
54 / 100
3050 ms4084 KiB
#include <bits/stdc++.h>

using namespace std;

#define rep(i, a, b) for (int i = a; i < (b); ++i)
#define per(i, a, b) for (int i = b - 1; i >= (a); --i)
#define trav(a, x) for (auto &a : x)

#define all(x) x.begin(), x.end()
#define sz(x) x.size()
#define pb push_back

#define umap unordered_map
#define uset unordered_set

typedef pair<int, int> ii;
typedef pair<int, ii> iii;
typedef vector<int> vi;
typedef vector<ii> vii;
typedef vector<vi> vvi;
typedef long long ll;

const int INF = 1000000007;

struct str {
    ll val = -1e14;
};

int main() {
    cin.tie(0)->sync_with_stdio(0);
    cin.exceptions(cin.failbit);

    int n, m;
    vector<pair<ii, pair<ll, int>>> items;
    ll c, f, v,sumc=0;

    cin >> n;
    rep(i, 0, n) {
        cin >> c >> f >> v;
        items.push_back({{f, 1}, {v, c}});
    }

    cin >> m;
    rep(i, 0, m) {
        cin >> c >> f >> v;
        sumc+=c;
        items.push_back({{f, 0}, {v, c}});
    }

    sort(all(items), greater<>());
    umap<ll, str> dp, dp2;
    dp[0].val = 0;


    trav(item, items) {
        int query;
        tie(f, query) = item.first;
        tie(v, c) = item.second;

        trav(val, dp) {
            ll cores = val.first, cost = val.second.val;
            dp2[cores].val=max(dp2[cores].val,cost);
            if (query&&cores<sumc)
                dp2[cores + c].val = max(dp2[cores + c].val, cost - v);
            else if (!query&&c <= cores)
                dp2[cores - c].val = max(dp2[cores - c].val, cost + v);
        }

        dp.swap(dp2);
        dp2.clear();
    }

    ll ans=0;
    trav(val,dp)ans=max(ans,val.second.val);
    cout<<ans<<endl;
    return 0;
}
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...