이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
const int LIMIT = 18;
long long count_tastiness(long long x, std::vector<long long> a) {
map<pair<int,int>,long long> memo;
function<long long(long long,long long)> calc = [&](long long i,long long j){
j=max(j,0ll);
j=min(j,(long long)1e18);
if(memo.count({i,j}))return memo[{i,j}];
if(i==-1)return j==0 ? 1ll : 0ll;
long long ac = calc(i-1,2ll*(j-a[i]));
if(ac>0)return memo[{i,j}] = calc(i-1,2ll*(j-a[i]+x))+ac;
else return memo[{i,j}]=0ll;
};
a.resize(LIMIT+1);
return calc(LIMIT,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... |