#include "fish.h"
#include <bits/stdc++.h>
using namespace std;
#define pb push_back
#define re resize
#define ff first
#define ss second
#define all(x) (x).begin(), (x).end()
#define all1(x) (x).begin()+1, (x).end()
#define loop(i, n) for(int i = 0; i < n; i++)
#define loop1(i, n) for(int i = 1; i <= n; i++)
#define print(x) cout << #x << ": " << x << endl << flush
template<class T> bool ckmin(T&a, T b) { bool B = a > b; a = min(a, b); return B; }
template<class T> bool ckmax(T&a, T b) { bool B = a < b; a = max(a, b); return B; }
typedef long long ll;
typedef vector<int> vi;
const int inf = 1e17;
const int maxn = 3005;
ll fish[maxn][maxn];
ll pref[maxn][maxn];
ll dpi[maxn][maxn];
ll dpd[maxn][maxn];
ll max_weights(int n, int m, vi x, vi y, vi w) {
loop(i, m) {
x[i]++; y[i]++;
fish[x[i]][y[i]] = w[i];
}
loop1(i, n) loop1(j, n)
pref[i][j] = pref[i][j-1] + fish[i][j];
loop(i, n+2) dpi[0][i] = -inf;
loop(i, n+2) dpd[0][i] = -inf;
dpd[0][0] = 0;
dpi[0][n] = 0;
loop1(i, n) {
dpi[i][n+1] = max(dpi[i-1][n], dpi[i-1][n+1]);
dpd[i][0] = max(dpd[i-1][0], dpd[i-1][1]);
loop1(j, n) {
ckmax(dpi[i][j], max(dpd[i-1][0], dpd[i-1][1]) + pref[i][j] - pref[i][0]);
loop1(k, n) if(k <= j)
ckmax(dpi[i][j], dpi[i-1][k] + pref[i][j] - pref[i][k]);
}
loop1(j, n) {
ckmax(dpd[i][j], dpi[i-1][n+1] + pref[i][n] - pref[i][j-1]);
loop1(k, n) if(k >= j)
ckmax(dpd[i][j], dpd[i-1][k] + pref[i][k-1] - pref[i][j-1]);
}
}
// cout << endl;
// loop1(j, n) {
// loop1(i, n) cout << fish[i][j] << " ";
// cout << endl;
// }
// cout << endl;
// loop1(j, n) {
// loop1(i, n) cout << dpi[i][j] << " ";
// cout << endl;
// }
// cout << endl;
// loop1(j, n) {
// loop1(i, n) cout << dpd[i][j] << " ";
// cout << endl;
// }
// cout << endl;
return dpd[n][1];
}
Compilation message
fish.cpp:24:17: warning: overflow in conversion from 'double' to 'int' changes value from '1.0e+17' to '2147483647' [-Woverflow]
24 | const int inf = 1e17;
| ^~~~
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
812 ms |
150460 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
308 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
881 ms |
143820 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
1 ms |
340 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
881 ms |
143820 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
812 ms |
150460 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |