#include<bits/stdc++.h>
#define ll long long
#define ld long double
#define db double
#define ull unsigned long long
#define pb push_back
#define inf 1000000000000000000
#define linf 1000000000
#define mpr make_pair
#define in insert
#define pii pair<int,int>
#define pll pair<ll,ll>
#define f first
#define s second
//author :: E.Mustafayev
using namespace std;
const int Max= 100000;
vector<vector<vector<ll>>> dp(Max,vector<vector<ll>>(2,vector<ll>(2)));
vector<int>v(Max);
int N;
ll solve(int col, bool a, bool b) {
if (col==N) {
return 0;
}
ll &res=dp[col][a][b];
if (res!=-1) {
return res;
}
res=solve(col+1,b,false);
ll x=0;
if (col>0&& b){
x-=v[col];
}
if (col>0&&!a&&!b){
x+=v[col-1];
}
if (col+1<N){
x+=v[col+1];
}
res=max(res,x+solve(col+1,b,true));
return res;
}
ll max_weights(int n, int m, vector<int>x, vector<int>y, vector<int>w) {
for(int i=0;i<m;i++){
v[x[i]]=w[i];
}
for(int i=0;i<Max;i++){
for(int j=0;j<2;j++){
for(int k=0;k<2;k++){
dp[i][j][k]=-1;
}
}
}
bool a=true,b=true;
N=n;
ll ans=0;
for(int i=0;i<m;i++){
if(x[i]%2){
a=false;
}
ans+=w[i];
}
if(a){
return ans;
}
ans=0;
for(int i=0;i<2;i++){
ll ans1=0;
for(int j=0;j<m;j++){
if(x[j]>1){
b=false;
}
ans1+=w[j];
}
ans=max(ans,ans1);
}
if(b){
return ans;
}
ll res=solve(0,false,false);
return res;
}
// void solve(){
//int n,m;
//cin>>n>>m;
//vector<int>x(m),y(m),w(m);
//for(int i=0;i<m;i++){
// cin>>x[i]>>y[i]>>w[i];
//
//}
//cout<<max_weights(n,m,x,y,w);
//
//
//}
//int main(){
// ios_base::sync_with_stdio(false);
//
//solve();
//
//}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
40 ms |
17392 KB |
Output is correct |
2 |
Correct |
44 ms |
17888 KB |
Output is correct |
3 |
Correct |
21 ms |
15472 KB |
Output is correct |
4 |
Correct |
18 ms |
15572 KB |
Output is correct |
5 |
Correct |
97 ms |
22552 KB |
Output is correct |
6 |
Correct |
112 ms |
22476 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
21 ms |
15528 KB |
Output is correct |
2 |
Incorrect |
72 ms |
19372 KB |
1st lines differ - on the 1st token, expected: '40604614618209', found: '80901044391025' |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
15444 KB |
Output is correct |
2 |
Correct |
28 ms |
23420 KB |
Output is correct |
3 |
Correct |
40 ms |
23868 KB |
Output is correct |
4 |
Correct |
36 ms |
24148 KB |
Output is correct |
5 |
Correct |
54 ms |
25688 KB |
Output is correct |
6 |
Correct |
46 ms |
25704 KB |
Output is correct |
7 |
Correct |
55 ms |
25700 KB |
Output is correct |
8 |
Correct |
51 ms |
25716 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
20 ms |
15488 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
20 ms |
15488 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Incorrect |
20 ms |
15488 KB |
1st lines differ - on the 1st token, expected: '3', found: '2' |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
19 ms |
15444 KB |
Output is correct |
2 |
Correct |
28 ms |
23420 KB |
Output is correct |
3 |
Correct |
40 ms |
23868 KB |
Output is correct |
4 |
Correct |
36 ms |
24148 KB |
Output is correct |
5 |
Correct |
54 ms |
25688 KB |
Output is correct |
6 |
Correct |
46 ms |
25704 KB |
Output is correct |
7 |
Correct |
55 ms |
25700 KB |
Output is correct |
8 |
Correct |
51 ms |
25716 KB |
Output is correct |
9 |
Incorrect |
50 ms |
25676 KB |
1st lines differ - on the 1st token, expected: '99999', found: '66666' |
10 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
40 ms |
17392 KB |
Output is correct |
2 |
Correct |
44 ms |
17888 KB |
Output is correct |
3 |
Correct |
21 ms |
15472 KB |
Output is correct |
4 |
Correct |
18 ms |
15572 KB |
Output is correct |
5 |
Correct |
97 ms |
22552 KB |
Output is correct |
6 |
Correct |
112 ms |
22476 KB |
Output is correct |
7 |
Correct |
21 ms |
15528 KB |
Output is correct |
8 |
Incorrect |
72 ms |
19372 KB |
1st lines differ - on the 1st token, expected: '40604614618209', found: '80901044391025' |
9 |
Halted |
0 ms |
0 KB |
- |