# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
316275 | lauran | Jelly Flavours (IOI20_jelly) | C++14 | 109 ms | 131344 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#include "jelly.h"
using namespace std;
int find_maximum_unique(int x, int y, vector <int> a, vector <int> b) {
int n = a.size();
if (x <= 500 && y <= 500 && n <= 200) {
// subtask 1, 2
int dp[n + 10][x + 10][y + 10] = {0};
for (int i = 1; i <= n; i++) {
for (int xx = 0; xx <= x; xx++)
for (int yy = 0; yy <= y; yy++) {
dp[i][xx][yy] = dp[i - 1][xx][yy];
if (xx >= a[i])
dp[i][xx][yy] = max(dp[i][xx][yy], dp[i - 1][xx - a[i - 1]][yy] + 1);
if (yy >= b[i])
dp[i][xx][yy] = max(dp[i][xx][yy], dp[i - 1][xx][yy - b[i - 1]] + 1);
}
}
int ans = dp[n][0][0];
for (int xx = 0; xx <= x; xx++)
for (int yy = 0; yy <= y; yy++)
ans = max(ans, dp[n][xx][yy]);
return ans;
}
}
컴파일 시 표준 에러 (stderr) 메시지
# | 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... |