#include "fish.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef vector<int> vi;
typedef pair<int, int> ii;
typedef vector<ii> vii;
typedef long double ld;
typedef pair<ll, ll> pll;
#define FOR(i, a, b) for(int i = a; i < b; i++)
#define ROF(i, a, b) for(int i = a; i >= b; i--)
#define ms memset
#define pb push_back
#define fi first
#define se second
// O(n^2) dp
ll max_weights(int n, int m, vi X, vi Y, vi W) {
ll mat[n][n]; //position of all fishes
ms(mat, 0, sizeof(mat));
FOR(i,0,m){
mat[X[i]][Y[i]] = W[i];
}
ll dp[n][n][2];
// dp[i][j][0] - mat[i][j] chosen, while increasing
// dp[i][j][1] - while decreasing
ms(dp,0,sizeof(dp));
FOR(i,0,n){
if (i < n-1){
FOR(j,0,n){
// increasing
if (j>0){
dp[i][j][0] = max(dp[i][j][0], dp[i][j-1][0]);
}
if (i>0 && j>0){
dp[i][j][0] = max(dp[i][j][0], dp[i-1][j-1][0]);
}
if (i>0){
dp[i][j][0] = max(dp[i][j][0], dp[i-1][j][1]);
}
dp[i][j][0] += mat[i][j];
}
}
if (i > 0){
ROF(j,n-1,0){
//decreasing
if (j<n-1){
dp[i][j][1] = max(dp[i][j][1], dp[i][j+1][1]);
dp[i][j][1] = max(dp[i][j][1], dp[i-1][j+1][1]);
}
if (i>1){
dp[i][j][1] = max(dp[i][j][1], dp[i-2][j][0]);
}
dp[i][j][1] += mat[i][j];
}
}
}
ll ans = 0;
FOR(i,0,n){
FOR(j,0,n){
ans = max(ans, max(dp[i][j][0], dp[i][j][1]));
}
}
return ans;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1154 ms |
1842072 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Runtime error |
946 ms |
2097152 KB |
Execution killed with signal 9 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
771 ms |
2097152 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
224 KB |
Output is correct |
2 |
Correct |
1 ms |
308 KB |
Output is correct |
3 |
Correct |
1 ms |
224 KB |
Output is correct |
4 |
Correct |
1 ms |
224 KB |
Output is correct |
5 |
Correct |
1 ms |
216 KB |
Output is correct |
6 |
Correct |
1 ms |
220 KB |
Output is correct |
7 |
Correct |
1 ms |
220 KB |
Output is correct |
8 |
Correct |
1 ms |
216 KB |
Output is correct |
9 |
Incorrect |
1 ms |
728 KB |
1st lines differ - on the 1st token, expected: '216624184325', found: '214714912058' |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
224 KB |
Output is correct |
2 |
Correct |
1 ms |
308 KB |
Output is correct |
3 |
Correct |
1 ms |
224 KB |
Output is correct |
4 |
Correct |
1 ms |
224 KB |
Output is correct |
5 |
Correct |
1 ms |
216 KB |
Output is correct |
6 |
Correct |
1 ms |
220 KB |
Output is correct |
7 |
Correct |
1 ms |
220 KB |
Output is correct |
8 |
Correct |
1 ms |
216 KB |
Output is correct |
9 |
Incorrect |
1 ms |
728 KB |
1st lines differ - on the 1st token, expected: '216624184325', found: '214714912058' |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
224 KB |
Output is correct |
2 |
Correct |
1 ms |
308 KB |
Output is correct |
3 |
Correct |
1 ms |
224 KB |
Output is correct |
4 |
Correct |
1 ms |
224 KB |
Output is correct |
5 |
Correct |
1 ms |
216 KB |
Output is correct |
6 |
Correct |
1 ms |
220 KB |
Output is correct |
7 |
Correct |
1 ms |
220 KB |
Output is correct |
8 |
Correct |
1 ms |
216 KB |
Output is correct |
9 |
Incorrect |
1 ms |
728 KB |
1st lines differ - on the 1st token, expected: '216624184325', found: '214714912058' |
10 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Runtime error |
771 ms |
2097152 KB |
Execution killed with signal 9 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Execution timed out |
1154 ms |
1842072 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |