Submission #516013

#TimeUsernameProblemLanguageResultExecution timeMemory
516013Jeff12345121Pinball (JOI14_pinball)C++14
51 / 100
1062 ms2000 KiB
#include <bits/stdc++.h> #define in cin #define out cout #define int long long using namespace std; //ifstream in("in.in"); //ofstream out("out.out"); int n, m; const int inf = (1LL << 60); struct Dev { int l, r, hole, cost; }; vector<Dev> dev; template <typename F> int getDp(vector<int> &dp, F f) { /// we want to have all the pinballs take it past left // dp[i] = minCost to get all balls to this device dp.resize(m + 1); for (int i = 1; i <= m; i++) { dp[i] = inf; } int ans = inf; for (int i = 1; i <= m; i++) { if (f(dev[i])) { dp[i] = dev[i].cost; } for (int j = 1; j < i; j++) { if (dev[i].l <= dev[j].hole && dev[j].hole <= dev[i].r) { dp[i] = min(dp[i], dp[j] + dev[i].cost); } } } return ans; } int32_t main() { in >> m >> n; /// m is number of lines, n is number of collumns dev.resize(m + 1); for (int i = 1; i <= m; i++) { int l, r, hole, cost; in >> l >> r >> hole >> cost; dev[i] = {l, r, hole, cost}; } vector<int> leftDp, rightDp; getDp(leftDp, [&](Dev x) { return x.l == 1; }); getDp(rightDp , [&](Dev x) { return x.r == n; }); int ans = inf; for (int i = 1; i <= m; i++) { /// i is middle int leftCost = inf, rightCost = inf; if (dev[i].l > 1) { for (int j = 1; j < i; j++) { // if (i == j) continue; if (dev[i].l <= dev[j].hole && dev[j].hole <= dev[i].r) { leftCost = min(leftCost, leftDp[j]); } } } else { leftCost = 0; } if (dev[i].r < n) { for (int j = 1; j < i; j++) { //if (i == j) continue; if (dev[i].l <= dev[j].hole && dev[j].hole <= dev[i].r) { rightCost = min(rightCost, rightDp[j]); } } } else { rightCost = 0; } ans = min(ans, leftCost + rightCost + dev[i].cost); // cout << "\n"; } if (ans == inf) { out << "-1\n"; } else { out << ans << "\n"; } }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...