# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
602111 | yutabi | Packing Biscuits (IOI20_biscuits) | C++14 | 20 ms | 1236 KiB |
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 pb push_back
typedef long long ll;
ll MAX_INT=1000000000000000000;
long long count_tastiness(long long x, std::vector<long long> a)
{
ll pwr2[61];
pwr2[0]=1;
for(int i=1;i<61;i++)
{
pwr2[i]=pwr2[i-1]*2;
}
while(a.size()<61)
{
a.pb(0);
}
ll ans=0;
ll sum=0;
vector <ll> sums;
for(int i=0;i<61;i++)
{
sum+=pwr2[i]*a[i];
sums.pb(sum);
}
sum=0;
vector <ll> res;
for(int i=0;i<61;i++)
{
sum+=pwr2[i]*a[i];
if(pwr2[i]*x>MAX_INT)
{
break;
}
if(sum>=pwr2[i]*x)
{
ll nw_sum=sum-pwr2[i]*x;
ll nw_res=1;
if(i!=0)
{
nw_res=res.back()+1;
}
for(int j=i-1;j>=0;j--)
{
nw_sum=min(sums[j],nw_sum);
if(nw_sum>=x*pwr2[j])
{
if(j==0)
{
nw_res++;
}
else
{
nw_res+=res[j-1]+1;
}
nw_sum-=x*pwr2[j];
}
}
res.pb(nw_res);
}
else
{
if(i==0)
{
res.pb(0);
}
else
{
res.pb(res.back());
}
}
}
for(int i=0;i<res.size();i++)
{
ans+=res[i];
}
/*for(int i=0;i<res.size();i++)
{
printf("%lld ",res[i]);
}
printf("\n");*/
return res.back()+1;
}
/*
- 1
8 1
2 11 2
2 1 13 4
2 1 1 6 8
2 1 1 2 2 16
2 1 1 2 0 1 16
2 1 1 0 1 1 8
0 0 0 1 1 1 1
*/
Compilation message (stderr)
# | 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... |