This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include <bits/stdc++.h>
using namespace std;
#define pi pair<int, int>
#define ll long long int
#define vll vector<ll>
#define all(x) (x).begin(), (x).end()
#define fori(i,n) for(int i = 0; i < int(n); i++)
void simplify(ll x, vll& a) {
while(a.size() < 61) a.push_back(0);
ll extra = 0;
for(ll &i : a) {
extra += i;
i = min(x, extra);
extra -= i;
if(extra&1) i++;
extra /= 2;
}
}
// unordered_map<ll, ll> dp[60];
ll recurse(const int index,const ll x, vll& a) {
if(index >= 60) return 1;
// if(dp[index].count(a[index])) return dp[index][a[index]];
ll ans = 0;
ll extra = a[index] / 2;
a[index+1] += extra;
ans += recurse(index+1, x, a);
a[index+1] -= extra;
if(a[index] >= x) {
extra = (a[index] - x) / 2;
a[index+1] += extra;
ans += recurse(index+1, x, a);
a[index+1] -= extra;
}
return //dp[index][a[index]] =
ans;
}
ll count_tastiness(ll x, vll a) {
simplify(x, a);
// fori(i,60) dp[i].clear();
return recurse(0, x, a);
}
# | 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... |