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 "biscuits.h"
#include <bits/stdc++.h>
using namespace std;
#define forn(i,n) for(int i=0;i<n;++i)
#define pb push_back
#define all(x) x.begin(), x.end()
using ll = long long;
const int N=1e5+5;
bitset<N> bs;
ll p2(ll x, vector<ll> a) {
while (a.size()<=60) a.pb(0);
ll s=1;
int k=0;
while (k<60 && (a[k]==0 || s>=(1ll<<k))) {
s+=(a[k]<<k);
++k;
}
ll old=s;
ll s2=1;
for (int t=k; t<60; ++t) {
if (!a[t]) continue;
if (s2 >= (1ll<<(t-k))) {
s2+=(a[t]<<(t-k));
} else {
s=s2*old;
old=s;
s2=1;
k=t;
--t;
}
}
s=s2*old;
old=s;
s2=1;
return s;
}
ll f(ll x, vector<ll>&a, int i) {
if (i>=a.size()-1) return 1+(a[i]/x);
if (a[i]>=x) {
a[i+1]+=(a[i]-x)>>1;
ll q1=f(x,a,i+1);
a[i+1]-=(a[i]-x)>>1;
a[i+1]+=(a[i])>>1;
ll q2=f(x,a,i+1);
a[i+1]-=(a[i])>>1;
return q1+q2;
} else {
a[i+1]+=(a[i])>>1;
ll q=f(x,a,i+1);
a[i+1]-=(a[i])>>1;
return q;
}
}
ll count_tastiness(ll x, vector<ll> a) {
if (x==1) {
return p2(x,a);
}
return f(x,a,0);
}
Compilation message (stderr)
biscuits.cpp: In function 'll f(ll, std::vector<long long int>&, int)':
biscuits.cpp:41:10: warning: comparison of integer expressions of different signedness: 'int' and 'std::vector<long long int>::size_type' {aka 'long unsigned int'} [-Wsign-compare]
41 | if (i>=a.size()-1) return 1+(a[i]/x);
| ~^~~~~~~~~~~~
# | 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... |