This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "fish.h"
#include<bits/stdc++.h>
#include <vector>
using namespace std;
long long haha[5000][5000];
long long dp[3001][3001][3];
long long max_weights(int n, int m, std::vector<int> x, std::vector<int> y, std::vector<int> w) {
for(long long i = 0; i <= n; i++) {
for(long long j = 0; j <= n; j++) {
haha[i][j] = 0;
}
}
for(long long i = 0; i < m; i++) {
haha[x[i]][y[i]+1] = w[i];
}
for(long long i = 0; i < n; i++) {
for(long long j = 1; j <= n; j++) {
haha[i][j]+=haha[i][j-1];
}
}
for(long long i = 0; i <= n; i++) {
for(long long j = 0; j <= n; j++) {
dp[i][j][0] = 0;
dp[i][j][1] = 0;
dp[i][j][2] = 0;
}
}
for(int i = 0; i <= n; i++) {
dp[0][i][0] = haha[1][i];
}
long long ans = 0,sb;
for(long long i = 1; i < n; i++) {
sb = 0;
for(long long j = 0; j <= n; j++) {
dp[i][j][2] = max(dp[i][j][2],dp[i-1][j][0]);
dp[i][j][2] = max(dp[i][j][2],dp[i-1][j][1]);
sb = max(sb,dp[i-1][j][2]);
}
long long big = 0;
for(long long j = 0; j <= n; j++) {
big = max(big,dp[i-1][j][0]-haha[i-1][j]);
dp[i][j][0] = big+haha[i+1][j]+haha[i-1][j]-haha[i][j];
}
big = 0;
for(long long j = n; j >= 0; j--) {
dp[i][j][1] = big-haha[i][j]+haha[i+1][j];
big = max(big,dp[i-1][j][0]);
}
big = 0;
for(long long j = n; j >= 0; j--) {
dp[i][j][1] = max(dp[i][j][1],big-haha[i][j]+haha[i+1][j]);
big = max(big,dp[i-1][j][1]);
}
for(long long j = 0; j <= n; j++) {
dp[i][j][0] = max(dp[i][j][0],sb+haha[i+1][j]);
}
}
for(long long i = 0; i <= n; i++) {
ans = max(ans,dp[n-1][i][0]);
ans = max(ans,dp[n-1][i][1]);
ans = max(ans,dp[n-1][i][2]);
}
return ans;
}
# | 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... |