이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
vector<ll>a;
map<pair<ll,ll>,bool>b;
map<pair<ll,ll>,ll>mp;
ll x,n=61;
ll best(ll d,ll k)
{
if(d==61)
return 1;
pair<ll,ll>id={d,k};
if(b[id])
return mp[id];
b[id]=1;
ll &r=mp[id];
k+=a[d];
if(k>=x)
return r=best(d+1,k/2)+best(d+1,(k-x)/2);
return r=best(d+1,k/2);
}
long long count_tastiness(ll X, vector<ll> A)
{
x=X,a=A,a.resize(n);
b.clear(),mp.clear();
return best(0,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... |