Submission #1005300

#TimeUsernameProblemLanguageResultExecution timeMemory
1005300overwatch9Catfish Farm (IOI22_fish)C++17
9 / 100
168 ms139724 KiB
#include "fish.h" #include <bits/stdc++.h> using namespace std; using ll = long long; vector <vector <pair <int, ll>>> fish; vector <vector <ll>> pfx; int n, m; const int maxn = 1e5 + 5; ll dp[maxn][11][11]; bool ready[maxn][11][11]; ll cost(int i, int h1, int h2, int h3) { if (i == 1) return 0; if (max(h1, h3) <= h2 || (int)fish[i-1].size() == 1) return 0; int mx = max(h1, h3); pair <int, ll> tp = {h2+1, 0}; int it = lower_bound(fish[i-1].begin(), fish[i-1].end(), tp) - fish[i-1].begin(); tp.first = mx; tp.second = 1e18; int it2 = upper_bound(fish[i-1].begin(), fish[i-1].end(), tp) - fish[i-1].begin(); it2--; // if (it == it2) // return 0; if (it == 0) return pfx[i-1][it2]; return pfx[i-1][it2] - pfx[i-1][it-1]; } int get_id(int x, int i) { if (x == 10 || i == 0) return 0; if (x == 0 || x == 1 || x == 2) return fish[i-1][x].first; if (x <= 5) return fish[i][x - 3].first; return fish[i+1][x - 6].first; } ll solve(int i, int h1, int h2) { if (i == n+1) { return cost(i, get_id(h1, i-2), get_id(h2, i-1), 0); } if (ready[i][h1][h2]) return dp[i][h1][h2]; ll ans = 0; if (i-2 >= 0) ans = solve(i+1, h2, 10) + cost(i, get_id(h1, i-2), get_id(h2, i-1), 0); else ans = solve(i+1, h2, 10) + cost(i, 0, get_id(h2, i-1), 0); int id = 0; if (i-1 >= 1) { if ((int)fish[i-1].size() == 2) ans = max(ans, solve(i+1, h2, 1) + cost(i, get_id(h1, i-2), get_id(h2, i-1), fish[i-1][1].first)); if ((int)fish[i-1].size() == 3) ans = max(ans, solve(i+1, h2, 2) + cost(i, get_id(h1, i-2), get_id(h2, i-1), fish[i-1][2].first)); } for (auto j : fish[i]) { if ((int)fish[i].size() == 2) { if (i-2 >= 0) ans = max(ans, solve(i+1, h2, 4) + cost(i, get_id(h1, i-2), get_id(h2, i-1), fish[i][1].first)); else ans = max(ans, solve(i+1, h2, 4) + cost(i, 0, get_id(h2, i-1), fish[i][1].first)); } if ((int)fish[i].size() == 3) { if (i-2 >= 0) ans = max(ans, solve(i+1, h2, 5) + cost(i, get_id(h1, i-2), get_id(h2, i-1), fish[i][2].first)); else ans = max(ans, solve(i+1, h2, 5) + cost(i, 0, get_id(h2, i-1), fish[i][2].first)); } } if (i+1 <= n) { if ((int)fish[i+1].size() == 2) { if (i-2 >= 0) ans = max(ans, solve(i+1, h2, 7) + cost(i, get_id(h1, i-2), get_id(h2, i-1), fish[i+1][1].first)); else ans = max(ans, solve(i+1, h2, 7) + cost(i, 0, get_id(h2, i-1), fish[i+1][1].first)); } if ((int)fish[i+1].size() == 3) { if (i-2 >= 0) ans = max(ans, solve(i+1, h2, 8) + cost(i, get_id(h1, i-2), get_id(h2, i-1), fish[i+1][2].first)); else ans = max(ans, solve(i+1, h2, 8) + cost(i, 0, get_id(h2, i-1), fish[i+1][2].first)); } } ready[i][h1][h2] = true; dp[i][h1][h2] = ans; return ans; } ll max_weights(int N, int M, vector<int> X, vector<int> Y, vector<int> W) { n = N; m = M; fish.resize(N+1); pfx.resize(N+1); for (int i = 0; i < M; i++) { fish[X[i] + 1].push_back({Y[i] + 1, W[i]}); } // dp = vector <vector <ll>> (N+1, vector <ll> (N+1, -1)); for (int i = 0; i <= N; i++) { fish[i].push_back({0, 0}); sort(fish[i].begin(), fish[i].end()); pfx[i].resize((int)fish[i].size() + 5, 1e18); pfx[i][0] = 0; for (int j = 1; j < (int)fish[i].size(); j++) pfx[i][j] = pfx[i][j-1] + fish[i][j].second; } return solve(1, 10, 10); } // int main() { // int nn, mm; // cin >> nn >> mm; // vector <int> x(mm), y(mm), w(mm); // for (int i = 0; i < mm; i++) // cin >> x[i] >> y[i] >> w[i]; // cout << max_weights(nn, mm, x, y, w) << '\n'; // }

Compilation message (stderr)

fish.cpp: In function 'll solve(int, int, int)':
fish.cpp:57:15: warning: variable 'j' set but not used [-Wunused-but-set-variable]
   57 |     for (auto j : fish[i]) {
      |               ^
fish.cpp:50:9: warning: unused variable 'id' [-Wunused-variable]
   50 |     int id = 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...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...