이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
using ll = long long;
const int MXK = 60;
ll count_tastiness(ll x, vector<ll> a) {
a.resize(MXK);
vector<ll> f(MXK);
f[0] = 1;
for(int i = 0; i < MXK; i++) {
ll sm = 0;
ll prev = 0;
ll mx = 0;
for(int j = i; j >= 0; j--) {
// f[j] to f[i] transition
sm += a[j] * (1LL << j);
mx ^= 1LL << (i - j);
ll nw = min((sm / x) >> j, mx);
f[i + 1] += f[j] * max(0ll, nw + 1 - prev);
prev = 2 * max(prev, nw + 1);
}
}
return f[59];
}
# | 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... |