이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include "bits/stdc++.h"
using namespace std;
typedef long long ll;
typedef vector<ll> vi;
typedef vector<vi> vvi;
#define sz(x) (int)(x).size()
#define all(x) (x).begin(), (x).end()
ll X;
long long count_tastiness(long long _X, std::vector<long long> a)
{
X = _X;
vector<ll> S(sz(a) + 1, 0);
ll base = 1;
for (int i = 0; i < sz(a); ++i)
{
S[i] += a[i] * base;
S[i + 1] += S[i];
base *= 2;
}
ll ans = 1;
vector<ll> A(1, 0);
base = 1;
for (int i = 0; base * X <= S.back(); ++i)
{
ll size = sz(A);
ll bound = (i < sz(S)) ? S[i] : S.back();
for (int j = 0; j < size; ++j)
{
ll y = A[j];
if ((y + base) * X <= bound)
A.push_back(y + base), ++ans;
}
base *= 2;
}
return ans;
}
# | 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... |