이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <iostream>
#include <map>
using namespace std;
#define ll long long
#define add push_back
#define len(a) ((int)(a).size())
#define fr first
#define sc second
long long count_tastiness(long long x, vector<long long> a) {
map<ll, ll> dp[70];
for(int i = len(a); i < 66; i++){
a.add(0);
}
dp[0][0] = 1;
for(int i = 0; i < len(a); i++){
for(auto v : dp[i]){
dp[i + 1][((v.fr + a[i]) / 2)] += v.sc;
if(a[i] + v.fr >= x) dp[i + 1][(v.fr + a[i] - x) / 2] += v.sc;
}
}
return dp[len(a)][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... |