#include "fish.h"
#include<bits/stdc++.h>
using namespace std;
const int maxn=100000+10,maxh=3000+10;
int n,m;
vector<pair<int,int>>allc[maxn];
long long dpn[maxh][maxh],dps[maxh][maxh],nau[maxh][maxh],inf=1e16,all[maxh][maxh];
long long solve(){
long long mainres=0;
for(int i=2;i<=n;i++){
long long unnow=-inf;
for(int j=n;j>=0;j--){
dpn[i][j]=max(dpn[i][j],unnow);
dpn[i][j]=max(dpn[i-1][j],dpn[i][j]);
dpn[i][j]=max(dpn[i][j],dps[i-1][j]);
if(i==n){
mainres=max(mainres,dpn[i][j]);
}
unnow=max(max(unnow,dpn[i-1][j]),dps[i-1][j])+all[i][j];
}
unnow=0;
for(int j=0;j<=n;j++){
unnow=max(unnow+all[i-1][j],dps[i-1][j]);
dps[i][j]=max(dps[i][j],unnow);
if(i==n){
mainres=max(mainres,dps[i][j]);
}
}
unnow=0;
for(int j=n;j>=0;j--){
unnow=max(unnow,nau[i-1][j]);
dps[i][j]=max(dps[i][j],unnow);
dpn[i][j]=max(dpn[i][j],unnow);
}
unnow=0;
for(int j=0;j<=n;j++){
unnow=max(unnow+all[i-1][j],nau[i-1][j]);
dps[i][j]=max(dps[i][j],unnow);
dpn[i][j]=max(dpn[i][j],unnow);
}
unnow=0;
for(int j=0;j<=n;j++){
unnow+=all[i][j];
nau[i][j]=max(dpn[i-1][j],dps[i-1][j])+unnow;
if(i==n){
mainres=max(mainres,nau[i][j]);
}
}
for(int j=0;j<=n;j++){
if(all[i][j+1]==0){
dpn[i][j]=dps[i][j]=-inf;
}
}
}
return mainres;
}
long long max_weights(int N, int M, std::vector<int> X, std::vector<int> Y,
std::vector<int> W) {
n=N;
m=M;
for(int i=0;i<m;i++){
Y[i]++;
X[i]++;
all[X[i]][Y[i]]+=W[i];
allc[X[i]].push_back(make_pair(Y[i],W[i]));
}
for(int i=0;i<=n;i++){
sort(allc[i].begin(),allc[i].end());
}
return solve();
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1053 ms |
133752 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
3160 KB |
Output is correct |
2 |
Execution timed out |
1056 ms |
129508 KB |
Time limit exceeded |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1046 ms |
120396 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
3164 KB |
Output is correct |
2 |
Correct |
1 ms |
3164 KB |
Output is correct |
3 |
Correct |
1 ms |
2908 KB |
Output is correct |
4 |
Correct |
1 ms |
2908 KB |
Output is correct |
5 |
Correct |
1 ms |
2908 KB |
Output is correct |
6 |
Correct |
0 ms |
2908 KB |
Output is correct |
7 |
Correct |
1 ms |
2908 KB |
Output is correct |
8 |
Correct |
1 ms |
3164 KB |
Output is correct |
9 |
Incorrect |
2 ms |
13148 KB |
1st lines differ - on the 1st token, expected: '216624184325', found: '162587623104' |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
3164 KB |
Output is correct |
2 |
Correct |
1 ms |
3164 KB |
Output is correct |
3 |
Correct |
1 ms |
2908 KB |
Output is correct |
4 |
Correct |
1 ms |
2908 KB |
Output is correct |
5 |
Correct |
1 ms |
2908 KB |
Output is correct |
6 |
Correct |
0 ms |
2908 KB |
Output is correct |
7 |
Correct |
1 ms |
2908 KB |
Output is correct |
8 |
Correct |
1 ms |
3164 KB |
Output is correct |
9 |
Incorrect |
2 ms |
13148 KB |
1st lines differ - on the 1st token, expected: '216624184325', found: '162587623104' |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
3164 KB |
Output is correct |
2 |
Correct |
1 ms |
3164 KB |
Output is correct |
3 |
Correct |
1 ms |
2908 KB |
Output is correct |
4 |
Correct |
1 ms |
2908 KB |
Output is correct |
5 |
Correct |
1 ms |
2908 KB |
Output is correct |
6 |
Correct |
0 ms |
2908 KB |
Output is correct |
7 |
Correct |
1 ms |
2908 KB |
Output is correct |
8 |
Correct |
1 ms |
3164 KB |
Output is correct |
9 |
Incorrect |
2 ms |
13148 KB |
1st lines differ - on the 1st token, expected: '216624184325', found: '162587623104' |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1046 ms |
120396 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Execution timed out |
1053 ms |
133752 KB |
Time limit exceeded |
2 |
Halted |
0 ms |
0 KB |
- |