# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
950458 | ALTAKEXE | Jelly Flavours (IOI20_jelly) | C++14 | 34 ms | 604 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
#define ll long long int
#define f first
#define s second
#define pii pair<ll, ll>
using namespace std;
int find_maximum_unique(int x, int y, vector<int> a, vector<int> b)
{
ll n = a.size(), i;
vector<pii> v(n);
for (ll i = 0; i < n; i++)
v.push_back({a[i], b[i]});
sort(v.begin(), v.end());
vector<ll> dp;
vector<ll> d(x + 1, 0);
for (ll i = 0; i < n; i++)
{
ll ok = 0;
dp = vector<ll>(x + 1, INT_MAX);
for (ll j = 0; j <= x; j++)
{
dp[j] = d[j] + v[i].s;
if (j - v[i].f >= 0)
dp[j] = min(dp[j], d[j - v[i].f]);
if (dp[j] <= y)
ok |= 1;
}
if (!ok)
break;
swap(dp, d);
}
return i;
}
컴파일 시 표준 에러 (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... |