이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "fish.h"//sub3
#include <bits/stdc++.h>
using namespace std;
long long max_weights(int n, int m,vector<int> b,vector<int> y,vector<int> w)
{
long long tab[n]={0},dp[n][4]={0};
for(int a=0;a<m;a++)
tab[b[a]]=w[a];
dp[0][0]=0;dp[0][1]=0;
dp[0][2]=tab[0];dp[0][3]=0;
dp[1][0]=0;dp[1][0]=tab[1];
dp[1][2]=tab[0];dp[1][3]=0;
for(int x=2;x<n;x++)
{
dp[x][0]=max(dp[x-1][0],dp[x-1][1]);
dp[x][1]=max(dp[x-1][3]+tab[x],dp[x-1][2]+tab[x]);
dp[x][2]=max(dp[x-1][1],dp[x-1][0]);
dp[x][3]=max(dp[x-1][3],dp[x-1][2]);
}
long long ans=max(max(dp[n-1][0],dp[n-1][1]),max(dp[n-1][2],dp[n-1][3]));
return ans;
}
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |
# | Verdict | Execution time | Memory | Grader output |
---|
Fetching results... |