# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
934052 | EJIC_B_KEDAX | 비스킷 담기 (IOI20_biscuits) | C++17 | 2 ms | 348 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using ll = long long;
using namespace std;
mt19937 mt(time(nullptr));
vector<ll> tmp, origin, dp;
ll calc(ll x, int pos) {
ll sum = (1ll << pos) * tmp[pos];
int ptr = pos;
while (ptr > 0 && sum < (1ll << pos) * x) {
sum += (1ll << ptr) * tmp[--ptr];
}
if (sum < (1ll << pos) * x) {
// cout << "! " << pos << '\n';
return 1;
}
if (ptr == pos) {
// cout << "!! " << pos << '\n';
if (ptr == 0) {
return 2;
} else {
return 2 * dp[ptr - 1];
}
}
tmp[ptr] = (sum - (1ll << pos) * x) / (1ll << ptr);
ll res = calc(x, ptr);
// cout << pos << ' ' << ptr << ' ' << res << '\n';
tmp[ptr] = origin[ptr];
return res + (pos ? dp[pos - 1] : 0);
}
ll count_tastiness(ll x, vector<ll> a) {
while (a.size() < 60) {
a.push_back(0);
}
int n = 60;
for (int i = 0; i < n; i++) {
if (a[i] > x + 1) {
a[i + 1] += (a[i] - x) / 2;
a[i] -= (a[i] - x) / 2;
}
}
origin = a;
tmp.resize(n);
tmp = a;
dp.resize(n, 0);
ll res = 0;
for (int i = 0; i < n; i++) {
dp[i] = calc(x, i);
// cout << dp[i] << ' ';
res += dp[i] - 1;
}
cout << '\n';
return res + 1;
}
컴파일 시 표준 에러 (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... |