이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "jelly.h"
#include <bits/stdc++.h>
using namespace std;
const int MAXN = 510;
const int INF = 0x3f3f3f3f;
int dp[MAXN][MAXN][MAXN];
int n, a[MAXN], b[MAXN];
int calc(int i, int x, int y)
{
if(i == 0) return 0;
if(dp[i][x][y] != 0) return dp[i][x][y];
int uga, buga, duga;
uga = 0;
buga = 0;
if(x >= a[i]) uga = calc(i-1,x-a[i],y);
if (y >= b[i]) buga = calc(i-1, x, y - b[i]);
duga = calc(i-1,x,y);
return max(uga,max(buga,duga));
}
int find_maximum_unique(int _x, int _y, vector<int> _a, vector<int> _b)
{
n = _a.size();
for(int i = 1; i <= n; i++){
a[i] = _a[i - 1];
b[i] = _b[i - 1];
}
memset(dp, -1, sizeof(dp));
cout << calc(n, _x, _y) << '\n';
}
컴파일 시 표준 에러 (stderr) 메시지
jelly.cpp: In function 'int find_maximum_unique(int, int, std::vector<int>, std::vector<int>)':
jelly.cpp:35:1: warning: no return statement in function returning non-void [-Wreturn-type]
35 | }
| ^
# | 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... |