# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
777916 | Mouad_ouj | 메기 농장 (IOI22_fish) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "fish.h"//sub3
#include <bits/stdc++.h>
using namespace std;
long long max_weights(int n, int m,vector<int> x,vector<int> y,vector<int> w)
{
long long tab[n]={0},ans=0,dp[n];
for(int x=0;x<m;x++)
tab[x]+=w[x[a]];
dp[0]=tab[0];
dp[1]=max(tab[0],tab[1]);
for(int x=2;x<n;x++)
dp[x]=max(dp[x-1],dp[x-2]+tab[x]);
return dp[n-1];
}