#include "fish.h"
#include <bits/stdc++.h>
#define pb push_back
#define ll long long
using namespace std;
const int N = 3005;
ll p[N][N],dp[N][5],suff[N],pref[N],prc[N][N];
vector <int> v[N];
ll max_weights(int n, int m, vector<int> X, vector<int> Y, vector<int> W) {
for (int i = 0;i < m; i++){
X[i]++,Y[i]++;
p[X[i]][Y[i]] += W[i];
v[X[i] + 1].pb(Y[i]);
v[X[i] - 1].pb(Y[i]);
}
for (int j = 1; j <= n; j++)
for (int i = 1; i <= n; i++)
p[j][i] += p[j][i - 1];
for (int j = 1; j <= n; j++){
v[j].pb(0);
for (int a: v[j]){
dp[a][0] = suff[a] - p[j][a];
dp[a][1] = pref[a] + p[j - 1][a];
if (j >= 3){
dp[a][1] = max(dp[a][1], prc[j - 2][a] + p[j - 1][a]);
}
}
for (int a = n; a >= 0; a--)
suff[a] = max(suff[a+1],max(dp[a][0],dp[a][1]) + p[j + 1][a]);
pref[0] = dp[0][1] - p[j][0];
for (int a =1; a <= n; a++)
pref[a] = max(pref[a - 1],dp[a][1] - p[j][a]);
prc[j][0] = max(dp[0][0],dp[0][1]);
for (int a = 1; a <= n; a++)
prc[j][a] = max(prc[j][a - 1], max(dp[a][0],dp[a][1]));
}
ll ans = 0;
for (int a = 0; a <= n; a++)
ans=max({ans,dp[a][0],dp[a][1]});
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
750 ms |
149320 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Runtime error |
793 ms |
154356 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
780 ms |
143884 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Correct |
0 ms |
340 KB |
Output is correct |
3 |
Correct |
0 ms |
340 KB |
Output is correct |
4 |
Correct |
0 ms |
340 KB |
Output is correct |
5 |
Correct |
0 ms |
340 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
7 |
Correct |
0 ms |
340 KB |
Output is correct |
8 |
Correct |
0 ms |
340 KB |
Output is correct |
9 |
Correct |
1 ms |
1876 KB |
Output is correct |
10 |
Correct |
4 ms |
4308 KB |
Output is correct |
11 |
Incorrect |
1 ms |
1876 KB |
1st lines differ - on the 1st token, expected: '278622587073', found: '278441359083' |
12 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Correct |
0 ms |
340 KB |
Output is correct |
3 |
Correct |
0 ms |
340 KB |
Output is correct |
4 |
Correct |
0 ms |
340 KB |
Output is correct |
5 |
Correct |
0 ms |
340 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
7 |
Correct |
0 ms |
340 KB |
Output is correct |
8 |
Correct |
0 ms |
340 KB |
Output is correct |
9 |
Correct |
1 ms |
1876 KB |
Output is correct |
10 |
Correct |
4 ms |
4308 KB |
Output is correct |
11 |
Incorrect |
1 ms |
1876 KB |
1st lines differ - on the 1st token, expected: '278622587073', found: '278441359083' |
12 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
0 ms |
340 KB |
Output is correct |
2 |
Correct |
0 ms |
340 KB |
Output is correct |
3 |
Correct |
0 ms |
340 KB |
Output is correct |
4 |
Correct |
0 ms |
340 KB |
Output is correct |
5 |
Correct |
0 ms |
340 KB |
Output is correct |
6 |
Correct |
1 ms |
340 KB |
Output is correct |
7 |
Correct |
0 ms |
340 KB |
Output is correct |
8 |
Correct |
0 ms |
340 KB |
Output is correct |
9 |
Correct |
1 ms |
1876 KB |
Output is correct |
10 |
Correct |
4 ms |
4308 KB |
Output is correct |
11 |
Incorrect |
1 ms |
1876 KB |
1st lines differ - on the 1st token, expected: '278622587073', found: '278441359083' |
12 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
780 ms |
143884 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
750 ms |
149320 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |