Submission #1129094

#TimeUsernameProblemLanguageResultExecution timeMemory
1129094vladiliusCatfish Farm (IOI22_fish)C++20
9 / 100
95 ms38572 KiB
#include <bits/stdc++.h> using namespace std; using ll = long long; using pii = pair<int, int>; #define pb push_back #define ff first #define ss second const ll infm = -1e18; ll max_weights(int N, int M, vector<int> X, vector<int> Y, vector<int> W){ int n = N, m = M; bool ind = 1; int Tx = 0, Ty = 0; for (int i = 0; i < m; i++){ if (X[i] % 2){ ind = 0; } X[i]++; Y[i]++; Tx = max(Tx, X[i]); Ty = max(Ty, Y[i]); } if (ind){ ll out = 0; for (int i: W){ out += i; } return out; } vector<int> d[n + 1]; for (int i = 0; i < m; i++){ d[X[i]].pb(i); } Tx = min(Tx + 1, n); Ty = min(Ty + 1, n); vector<vector<ll>> F(Tx + 1, vector<ll>(Ty + 1)); for (int i = 1; i <= Tx; i++){ for (int j: d[i]){ F[i][Y[j]] = W[j]; } for (int j = 1; j <= Ty; j++){ F[i][j] += F[i][j - 1]; } } vector<vector<vector<ll>>> dp(Tx + 1, vector<vector<ll>>(Ty + 1, vector<ll>(2))); for (int i = 2; i <= Tx; i++){ vector<ll> pr1(n + 1), pr2(n + 1), pr3(n + 2); pr1[0] = pr2[0] = infm; for (int j = 0; j <= n; j++){ if (j != 0){ pr1[j] = pr1[j - 1]; pr2[j] = pr2[j - 1]; } pr1[j] = max(pr1[j], dp[i - 1][j][0] - F[i - 1][j]); if (i > 2){ pr2[j] = max(pr2[j], max(dp[i - 2][j][0], dp[i - 2][j][1])); } } if (i > 2){ for (int j = n; j >= 0; j--){ pr3[j] = max(pr3[j + 1], max(dp[i - 2][j][0], dp[i - 2][j][1]) + F[i - 1][j]); } } vector<ll> pr4(n + 2); for (int j = n; j >= 0; j--){ pr4[j] = max(pr4[j + 1], max(dp[i - 1][j][0], dp[i - 1][j][1]) + F[i][j]); } for (int j = 0; j <= Ty; j++){ dp[i][j][0] = pr1[j] + F[i - 1][j]; if (i > 2){ dp[i][j][0] = max(dp[i][j][0], pr2[j] + F[i - 1][j]); dp[i][j][0] = max(dp[i][j][0], pr3[j + 1]); } dp[i][j][1] = max(0LL, pr4[j + 1] - F[i][j]); } } ll out = 0; for (int i = 1; i <= Tx; i++){ for (int j = 0; j <= Ty; j++){ out = max({out, dp[i][j][0], dp[i][j][1]}); } } return out; }
#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...