# | 제출 시각 | 아이디 | 문제 | 언어 | 결과 | 실행 시간 | 메모리 |
---|---|---|---|---|---|---|---|
389900 | Osama_Alkhodairy | 비스킷 담기 (IOI20_biscuits) | C++17 | 0 ms | 0 KiB |
이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
//~ #include "biscuits.h"
#include "grader.cpp"
using namespace std;
#define ll long long
int k;
ll x;
vector <ll> a, s;
map <ll, ll> dp;
ll solve(ll p){
if(p == 1) return 1;
if(p <= 0) return 0;
if(dp.count(p)) return dp[p];
int b = __lg(p);
if((p & (p - 1)) == 0) b--;
return dp[p] = solve(1LL << b) + solve(min(p, 1 + s[b] / x) - (1LL << b));
}
long long count_tastiness(long long X, vector<long long> A){
x = X;
a = A;
k = a.size();
while(k < 60){
a.push_back(0);
k++;
}
s.clear();
s.resize(k);
for(int i = 0 ; i < k ; i++){
if(i > 0) s[i] = s[i - 1];
s[i] += (1LL << i) * a[i];
}
dp.clear();
return solve(1LL << 60);
}