# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
590321 | ogibogi2004 | 비스킷 담기 (IOI20_biscuits) | C++14 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include<bits/stdc++.h>
using namespace std;
#define ll long long
unordered_map<ll,ll>dp;
ll s[64];
ll calc(ll n)
{
if(dp.count(n))return dp[n];
int t=0,pw2=1;
while(pw2<n){pw2*=2;t++;}
pw2/=2;t--;
return dp[n]=calc(pw2)+calc(min(n,1+s[i]/x)-pw2);
}
long long count_tastiness(long long x, vector<long long> a) {
dp.clear();
s[0]=a[0];
for(int i=1;i<a.size();i++)
{
s[i]=s[i-1]+a[i];
}
for(int i=0;i<=a.size();i++)
{
calc((1ll<<i));
}
return dp[(1ll<<a.size())];
}