# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
602094 | yutabi | 비스킷 담기 (IOI20_biscuits) | C++14 | 9 ms | 1108 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#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;
for(int j=i-1;j>=0;j--)
{
nw_sum=min(sums[j],nw_sum);
if(nw_sum>=x*pwr2[j])
{
nw_res+=res[j];
nw_sum-=x*pwr2[j];
}
}
res.pb(nw_res);
}
else
{
res.pb(0);
}
}
for(int i=0;i<res.size();i++)
{
ans+=res[i];
}
return ans+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
*/
컴파일 시 표준 에러 (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... |