이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
#define ll __int128
using namespace std;
const int k=61;
int i;
int nearest(ll u){
vector<int> v;
while(u>0){
v.push_back(u%2);
u/=2;
}
for(int i=v.size()-1; i>=0; i--){
if(v[i]==1) return i;
}
return -1;
}
long long count_tastiness(long long x, vector<long long> a) {
vector<ll> s(k+1),ans(k+1);
int n=a.size();
for(i=0; i<k-1; i++){
if(i<n) s[i]+=a[i]*pow(2,i);
s[i+1]+=s[i];
}
ans[0]=1;
for(i=1; i<k; i++){
ans[i]+=ans[i-1];
int j=i-1;
ll c=1; ll p;
int t=0;
while(c>0){
p=pow(2,j);
if(t==0) c=min(s[j]/x,2*p-1)-p; // /x
else c=min(s[j]/x, c)-p;
if(c==0){
ans[i]++;
break;
}
if(c<0) break;
j=nearest(c);
ans[i]+=ans[j];
t++;
}
//cout<<i<<" "<<ans[i]<<endl;
}
//cout<<ans[k-1]<<endl;
return ans[k-1];
return 0;
}
# | 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... |