#include "fish.h"
#include <bits/stdc++.h>
#include <vector>
using namespace std;
typedef long long int ll;
long long max_weights(int N, int M, std::vector<int> X, std::vector<int> Y,std::vector<int> W) {
ll ans =0;
ll a[300005];
ll flag=0,flag1=0;
for(int i =0;i<M;i++)
{
if(X[i]%2==1)
{
flag=1;
}
if(Y[i]!=0)
{
flag1=1;
}
a[X[i]]+=W[i];
}
if(flag==0)
{
for(int i =0;i<M;i++)
{
ans+=W[i];
}
}
else if(flag1==0)
{
ll dp[300005][2];
memset(dp,0,sizeof(dp));
dp[1][0]=a[1];
dp[1][1]=a[0];
for(int i =2;i<N;i++)
{
dp[i][0]=max(dp[i-1][1]+a[i],dp[i-1][0]);
dp[i][1]=max({dp[i-2][0]+a[i-1],dp[i-1][1],dp[i-2][1]+a[i-1]});
}
ans=max(dp[N-1][0],dp[N-1][1]);
}
else
{
ll b[2][300005];
memset(b,0,sizeof(b));
for(int i =0;i<M;i++)
{
b[X[i]][Y[i]]+=W[i];
}
for(int i =1;i<N-1;i++)
{
b[0][i]+=b[0][i-1];
b[1][i-1]+=b[1][i-1];
}
ans=max(b[0][N-1],b[1][N-1]);
if(N==2)
{
return ans;
}
for(int i =0;i<N;i++)
{
ans=max(ans,(b[1][N-1]-b[1][i]+b[0][i]));
}
}
return ans;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
25 ms |
9192 KB |
Output is correct |
2 |
Correct |
29 ms |
9576 KB |
Output is correct |
3 |
Correct |
4 ms |
7252 KB |
Output is correct |
4 |
Correct |
3 ms |
7252 KB |
Output is correct |
5 |
Correct |
86 ms |
14304 KB |
Output is correct |
6 |
Correct |
94 ms |
14300 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
3 ms |
7252 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
7252 KB |
Output is correct |
2 |
Correct |
4 ms |
7296 KB |
Output is correct |
3 |
Correct |
18 ms |
8532 KB |
Output is correct |
4 |
Correct |
13 ms |
8148 KB |
Output is correct |
5 |
Correct |
28 ms |
9676 KB |
Output is correct |
6 |
Correct |
25 ms |
9668 KB |
Output is correct |
7 |
Correct |
27 ms |
9676 KB |
Output is correct |
8 |
Correct |
28 ms |
9672 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
11 ms |
14664 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
11 ms |
14664 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
11 ms |
14664 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
3 ms |
7252 KB |
Output is correct |
2 |
Correct |
4 ms |
7296 KB |
Output is correct |
3 |
Correct |
18 ms |
8532 KB |
Output is correct |
4 |
Correct |
13 ms |
8148 KB |
Output is correct |
5 |
Correct |
28 ms |
9676 KB |
Output is correct |
6 |
Correct |
25 ms |
9668 KB |
Output is correct |
7 |
Correct |
27 ms |
9676 KB |
Output is correct |
8 |
Correct |
28 ms |
9672 KB |
Output is correct |
9 |
Runtime error |
36 ms |
19448 KB |
Execution killed with signal 7 |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
25 ms |
9192 KB |
Output is correct |
2 |
Correct |
29 ms |
9576 KB |
Output is correct |
3 |
Correct |
4 ms |
7252 KB |
Output is correct |
4 |
Correct |
3 ms |
7252 KB |
Output is correct |
5 |
Correct |
86 ms |
14304 KB |
Output is correct |
6 |
Correct |
94 ms |
14300 KB |
Output is correct |
7 |
Incorrect |
3 ms |
7252 KB |
1st lines differ - on the 1st token, expected: '2', found: '1' |
8 |
Halted |
0 ms |
0 KB |
- |