This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
// In the name of Allah
#include <bits/stdc++.h>
#include "biscuits.h"
using namespace std;
typedef long long int ll;
typedef long double ld;
typedef pair<int, int> pii;
typedef pair<ll, ll> pll;
typedef complex<ld> cld;
#define all(x) (x).begin(),(x).end()
#define len(x) ((ll) (x).size())
#define F first
#define S second
#define pb push_back
#define sep ' '
#define endl '\n'
#define Mp make_pair
#define kill(x) cout << x << '\n', exit(0)
#define set_dec(x) cout << fixed << setprecision(x);
#define file_io(x,y) freopen(x, "r", stdin); freopen(y, "w", stdout);
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());
const int maxn = 60 + 4;
int n; ll R;
ll A[maxn]; vector<ll> ls;
ll dp[maxn];
ll cal(int i, ll x) {
if (x == 0) return 0;
else if (x == 1) return 1;
else if (x >= (1ll << (i + 1))) return dp[i];
int j = __lg(x);
return dp[j - 1] + cal(j - 1, min(x - (1ll << j), ls[j]));
}
ll count_tastiness(ll x, vector<ll> Ax) {
n = len(Ax); R = x;
for (int i = 0; i < n; i++) A[i] = Ax[i];
ll sm = 0; ls.clear();
for (int i = 0; i < n; i++) {
sm += (A[i] << i);
ll valx = (sm / x);
ls.pb(max(0ll, valx - (1ll << i) + 1));
}
for (int i = 0; i < n; i++) {
dp[i] = cal(i - 1, ls[i]);
if (i == 0) dp[i]++;
else dp[i] += dp[i - 1];
}
return dp[n - 1];
}
# | 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... |