#include "fish.h"
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
ll pref[3005][3005], dp[3005][3005][2], pmx1[3005][3005], smx1[3005][3005], pmx2[3005][3005], smx2[3005][3005];
ll max_weights(int N, int M, vector<int> X, vector<int> Y, vector<int> W) {
int mask = 0, mx = 0, mx2 = 0;
for(int i=0; i<M; i++) mask |= (1 << (X[i] % 2));
for(int i=0; i<M; i++) mx = max(mx, Y[i]);
for(int i=0; i<M; i++) mx2 = max(mx, X[i]);
if(mask == 1) {
ll ans = 0;
for(int &x : W) ans += x;
return ans;
}
if(mx == 0) {
vector<ll> val(N+5), dp(N+5);
for(int i=0; i<M; i++) val[X[i]] = W[i];
ll ans = 0;
vector<ll> MX(N+5); MX[0] = val[1];
for(int i=1; i<N; i++) {
dp[i] = max(dp[i-1], val[i-1]);
if(i >= 3) dp[i] = max(dp[i], MX[i-3] + val[i-1]);
if(i >= 2) dp[i] = max(dp[i], dp[i-2] + val[i-1]);
MX[i] = max(MX[i-1], dp[i] + val[i+1]);
}
for(int i=0; i<N; i++) ans = max(ans, dp[i] + val[i+1]);
return ans;
}
for(int i=0; i<M; i++) pref[X[i]+1][Y[i]+1] += W[i];
for(int i=1; i<=N; i++)
for(int j=1; j<=N; j++) pref[i][j] += pref[i][j-1];
for(int i=1; i<=N; i++)
for(int j=0; j<=N; j++) pmx1[i][j] = smx1[i][j] = pmx2[i][j] = smx2[i][j] = -1e18;
if(mx2 <= 1) {
if(N == 2) return max(pref[1][2], pref[2][2]);
ll ans = 0;
for(int i=1; i<=N; i++) ans = max(ans, pref[1][i] + pref[2][N] - pref[2][i]);
return max({ pref[1][N], pref[2][N], ans });
}
pmx1[1][0] = dp[1][0][1] - pref[1][0];
smx1[1][N] = max(dp[1][N][0], dp[1][N][1]) + pref[2][N];
for(int i=1; i<=N; i++) pmx1[1][i] = max(pmx1[1][i-1], dp[1][i][1] - pref[1][i]);
for(int i=N-1; i>=0; i--) smx1[1][i] = max(smx1[1][i+1], max(dp[1][i][0], dp[1][i][1]) + pref[2][i]);
for(int i=1; i<=N; i++) pmx2[1][i] = max(pmx2[1][i-1], max(dp[1][i][0], dp[1][i][1]));
for(int i=N-1; i>=0; i--) smx2[1][i] = max(smx2[i][i+1], max(dp[1][i][0], dp[1][i][1]));
for(int i=2; i<=N; i++) {
for(int j=0; j<=N; j++) {
dp[i][j][0] = max(dp[i][j][0], smx1[i-1][j] - pref[i][j]);
dp[i][j][1] = max({ dp[i][j][1], pmx1[i-1][j] + pref[i-1][j] });
if(i >= 3) dp[i][j][0] = max({ dp[i][j][0], pmx2[i-2][j] + pref[i-1][j], smx2[i-2][j] + pref[i-1][j] });
if(i >= 3) dp[i][j][1] = max({ dp[i][j][1], pmx2[i-2][j] + pref[i-1][j], smx2[i-2][j] + pref[i-1][j] });
if(j) pmx1[i][j] = pmx1[i][j-1];
if(j) pmx2[i][j] = pmx2[i][j-1];
pmx1[i][j] = max(pmx1[i][j], dp[i][j][1] - pref[i][j]);
pmx2[i][j] = max(pmx2[i][j], max(dp[i][j][0], dp[i][j][1]));
}
smx1[i][N] = max(dp[i][N][0], dp[i][N][1]) + pref[i+1][N];
for(int j=N-1; j>=0; j--) smx1[i][j] = max(smx1[i][j+1], max(dp[i][j][0], dp[i][j][1]) + pref[i+1][j]);
smx2[i][N] = max(dp[i][N][0], dp[i][N][1]);
for(int j=N-1; j>=0; j--) smx2[i][j] = max(smx2[i][j+1], max(dp[i][j][0], dp[i][j][1]));
}
ll ans = 0;
for(int i=1; i<=N; i++)
for(int j=1; j<=N; j++) ans = max({ ans, dp[i][j][0] + pref[i+1][j], dp[i][j][1] + pref[i+1][j] });
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
3676 KB |
Output is correct |
2 |
Correct |
14 ms |
4308 KB |
Output is correct |
3 |
Correct |
1 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
46 ms |
13652 KB |
Output is correct |
6 |
Correct |
46 ms |
13904 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
8540 KB |
Output is correct |
2 |
Runtime error |
222 ms |
156836 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
2 ms |
2656 KB |
Output is correct |
3 |
Correct |
9 ms |
4664 KB |
Output is correct |
4 |
Correct |
7 ms |
4188 KB |
Output is correct |
5 |
Correct |
15 ms |
6744 KB |
Output is correct |
6 |
Correct |
13 ms |
5972 KB |
Output is correct |
7 |
Correct |
17 ms |
6488 KB |
Output is correct |
8 |
Correct |
16 ms |
6492 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
8536 KB |
Output is correct |
2 |
Correct |
1 ms |
10588 KB |
Output is correct |
3 |
Correct |
1 ms |
8540 KB |
Output is correct |
4 |
Correct |
1 ms |
8540 KB |
Output is correct |
5 |
Correct |
1 ms |
8540 KB |
Output is correct |
6 |
Correct |
1 ms |
8536 KB |
Output is correct |
7 |
Correct |
1 ms |
8540 KB |
Output is correct |
8 |
Incorrect |
1 ms |
8640 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
8536 KB |
Output is correct |
2 |
Correct |
1 ms |
10588 KB |
Output is correct |
3 |
Correct |
1 ms |
8540 KB |
Output is correct |
4 |
Correct |
1 ms |
8540 KB |
Output is correct |
5 |
Correct |
1 ms |
8540 KB |
Output is correct |
6 |
Correct |
1 ms |
8536 KB |
Output is correct |
7 |
Correct |
1 ms |
8540 KB |
Output is correct |
8 |
Incorrect |
1 ms |
8640 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
8536 KB |
Output is correct |
2 |
Correct |
1 ms |
10588 KB |
Output is correct |
3 |
Correct |
1 ms |
8540 KB |
Output is correct |
4 |
Correct |
1 ms |
8540 KB |
Output is correct |
5 |
Correct |
1 ms |
8540 KB |
Output is correct |
6 |
Correct |
1 ms |
8536 KB |
Output is correct |
7 |
Correct |
1 ms |
8540 KB |
Output is correct |
8 |
Incorrect |
1 ms |
8640 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
9 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
348 KB |
Output is correct |
2 |
Correct |
2 ms |
2656 KB |
Output is correct |
3 |
Correct |
9 ms |
4664 KB |
Output is correct |
4 |
Correct |
7 ms |
4188 KB |
Output is correct |
5 |
Correct |
15 ms |
6744 KB |
Output is correct |
6 |
Correct |
13 ms |
5972 KB |
Output is correct |
7 |
Correct |
17 ms |
6488 KB |
Output is correct |
8 |
Correct |
16 ms |
6492 KB |
Output is correct |
9 |
Runtime error |
20 ms |
6524 KB |
Execution killed with signal 11 |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
13 ms |
3676 KB |
Output is correct |
2 |
Correct |
14 ms |
4308 KB |
Output is correct |
3 |
Correct |
1 ms |
348 KB |
Output is correct |
4 |
Correct |
0 ms |
348 KB |
Output is correct |
5 |
Correct |
46 ms |
13652 KB |
Output is correct |
6 |
Correct |
46 ms |
13904 KB |
Output is correct |
7 |
Correct |
1 ms |
8540 KB |
Output is correct |
8 |
Runtime error |
222 ms |
156836 KB |
Execution killed with signal 11 |
9 |
Halted |
0 ms |
0 KB |
- |