이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include <bits/stdc++.h>
using namespace std;
long long count_tastiness(long long x, std::vector<long long> a) {
map<pair<int,int>,long long> memo;
function<long long(int,int)> calc = [&](int i,int j){
j=max(j,0);
if(memo.count({i,j}))return memo[{i,j}];
if(i==-1)return j==0 ? 1ll : 0ll;
long long ac = calc(i-1,2*(j-a[i]));
if(ac)return memo[{i,j}] = calc(i-1,2*(j-a[i]+x))+ac;
};
return calc(a.size()-1,0);
}
컴파일 시 표준 에러 (stderr) 메시지
biscuits.cpp: In lambda function:
biscuits.cpp:12:2: warning: control reaches end of non-void function [-Wreturn-type]
12 | };
| ^
# | 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... |