#include <bits/stdc++.h>
#include "fish.h"
using namespace std;
typedef long long ll;
typedef vector<int> vi;
ll max_weights(int n, int m, vi x, vi y, vi w){
ll dp[n][4];
vector<ll> v(n,0);
ll cont=0;
sort(x.begin(), x.end());
for(int i=0; i<n; i++){
if(cont==m) break;
if(x[cont]==i){
v[i]=w[cont];
cont++;
}
}
if(n==2){
return max(w[0], w[1]);
}
for(int i=2; i<n; i++){
if(i==2){
dp[i][0]=0;
dp[i][1]=v[i]+v[i-2];
dp[i][2]=v[i-1];
dp[i][3]=v[i];
continue;
}
dp[i][0]=max(dp[i-1][0], dp[i-1][2]);
dp[i][1]=max(dp[i-1][0]+v[i-2] + v[i], dp[i-1][2] + v[i]);
dp[i][2]=max(dp[i-1][1], dp[i-1][3]);
dp[i][3]=max(dp[i-1][1]+ v[i], dp[i-1][3] + v[i]);
}
return max({dp[n-1][0], dp[n-1][1], dp[n-1][2],dp[n-1][3]});
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
16 ms |
7256 KB |
1st lines differ - on the 1st token, expected: '40313272768926', found: '55091480' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
4188 KB |
Output is correct |
2 |
Correct |
3 ms |
4188 KB |
Output is correct |
3 |
Incorrect |
14 ms |
5924 KB |
1st lines differ - on the 1st token, expected: '21261825233649', found: '26722566766298' |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
0 ms |
348 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
4188 KB |
Output is correct |
2 |
Correct |
3 ms |
4188 KB |
Output is correct |
3 |
Incorrect |
14 ms |
5924 KB |
1st lines differ - on the 1st token, expected: '21261825233649', found: '26722566766298' |
4 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
16 ms |
7256 KB |
1st lines differ - on the 1st token, expected: '40313272768926', found: '55091480' |
2 |
Halted |
0 ms |
0 KB |
- |