이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "fish.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
const ll mxn = 305;
ll n, m, w[mxn][mxn], ps[mxn][mxn], dp[2][mxn][mxn][mxn], mx, res = 0;
ll get(ll x, ll y, ll y2) {
return (y <= y2 ? ps[x][y2] - ps[x][y] : 0);
}
ll calc(ll p, ll h2, ll h1, ll h) {
return get(p, h1, max(h, h2));
}
ll max_weights(int N, int M, vector<int> X, vector<int> Y, vector<int> W) {
n = N, m = M;
for (int i = 0; i < m; i++) w[X[i] + 1][Y[i] + 1] = W[i];
for (int i = 1; i <= n; i++) for (int j = 1; j <= n; j++) ps[i][j] = ps[i][j - 1] + w[i][j];
if (n < 3) return max(ps[1][n], ps[2][n]);
for (int h = 0; h <= n; h++) for (int h1 = 0; h1 <= n; h1++) for (int h2 = 0; h2 <= n; h2++) dp[1][h2][h1][h] = calc(1, 0, h2, h1) + calc(2, h2, h1, h);
for (int i = 4; i <= n; i++) {
mx = 0;
for (int h1 = 0; h1 <= n; h1++) for (int h2 = 0; h2 <= n; h2++) for (int h3 = 0; h3 <= n; h3++) mx = max(mx, dp[1 - i % 2][h3][h2][h1]);
for (int h = 0; h <= n; h++) for (int h1 = 0; h1 <= n; h1++) for (int h2 = 0; h2 <= n; h2++) dp[i % 2][h2][h1][h] = max(dp[i % 2][h2][h1][h], mx + calc(i - 1, h2, h1, h));
}
for (int h = 0; h <= n; h++) for (int h1 = 0; h1 <= n; h1++) for (int h2 = 0; h2 <= n; h2++) res = max(res, dp[n % 2][h2][h1][h] + calc(n, h1, h, 0));
return res;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |