# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
605363 | SamAnd | 비스킷 담기 (IOI20_biscuits) | C++17 | 1105 ms | 111792 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;
#define fi first
#define se second
#define m_p make_pair
#define sz(x) ((int)(x).size())
#define all(x) (x).begin(),(x).end()
typedef long long ll;
const int X = 20004, K = 202;
map<ll, ll> dp[K];
long long count_tastiness(long long x, std::vector<long long> a)
{
for (int i = 0; i < 66; ++i)
a.push_back(0);
dp[0][0] = 1;
for (int i = 0; i < sz(a); ++i)
{
for (auto it = dp[i].begin(); it != dp[i].end(); ++it)
{
int j = it->fi;
dp[i + 1][(j + a[i]) / 2] += dp[i][j];
if (j + a[i] - x >= 0)
dp[i + 1][(j + a[i] - x) / 2] += dp[i][j];
}
}
ll ans = 0;
for (auto it = dp[sz(a)].begin(); it != dp[sz(a)].end(); ++it)
ans += it->se;
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... |