Submission #729832

# Submission time Handle Problem Language Result Execution time Memory
729832 2023-04-24T17:33:16 Z caganyanmaz Catfish Farm (IOI22_fish) C++17
0 / 100
1000 ms 2012188 KB
#include <bits/stdc++.h>
#define pb push_back
#define int int64_t
using namespace std;

constexpr static int SIZE = 300;
int dp[SIZE][SIZE][2];

int max_weights(int32_t n, int32_t m, vector<int32_t> x, vector<int32_t> y, vector<int32_t> w)
{
        vector<vector<int>> grid(m, vector<int>(m));
        for (int i = 0; i < m; i++)
                grid[x[i]][y[i]] = w[i];
        for (int i = 0; i < n; i++)
        {
                if (i > 0)
                        dp[1][i][0] = dp[0][i-1][0];
                dp[1][i][0] += grid[0][i];
                dp[1][i][1] = dp[1][i][0];
        }
        for (int i = 2; i < n; i++)
        {
                vector<int> b_l(n+1), b_h(n+1);
                vector<int> prefix(n);
                for (int j = 1; j <= n; j++)
                        prefix[j] = prefix[j-1] + grid[i-1][j-1];
                for (int j = 1; j <= n; j++)
                        b_l[j] = max({b_l[j-1], dp[i-2][j-1][0], dp[i-2][j-1][1]});
                for (int j = n-1; j >= 0; j--)
                        b_h[j] = max({b_h[j+1], dp[i-2][j][0] + prefix[j], dp[i-2][j][1] + prefix[j]});
                for (int j = 1; j < n; j++)
                        dp[i][j][0] = grid[i-1][j] + max({dp[i][j-1][0], dp[i-1][j-1][0]});
                dp[i][n-2][1] = max(dp[i-1][n-1][0], dp[i-1][n-1][1]) + grid[i][n-1];
                for (int j = n-3; j >= 0; j--)
                        dp[i][j][1] = max(dp[i][j+1][1], dp[i-1][j+1][1]) + grid[i][j];
                for (int j = 0; j < n; j++)
                {
                        dp[i][j][0] = max({dp[i][j][0], b_l[j] + prefix[j], b_h[j]});
                        dp[i][j][1] = max({dp[i][j][1], b_l[j] + prefix[j], b_h[j]});
                }
        }
        vector<int> prefix(n+1);
        for (int i = 1; i <= n; i++)
                prefix[i] = prefix[i-1] + grid[n-1][i-1];
        int best = 0;
        for (int i = 0; i < n; i++)
                best = max(best, dp[n-1][i][0]);
        for (int i = 0; i < n; i++)
                best = max({best, max(dp[n-2][i][1], dp[n-2][i][0]) + prefix[i]});
        return best;
}
# Verdict Execution time Memory Grader output
1 Execution timed out 1180 ms 2012188 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 596 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 340 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Runtime error 1 ms 596 KB Execution killed with signal 11
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1180 ms 2012188 KB Time limit exceeded
2 Halted 0 ms 0 KB -