This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "biscuits.h"
#include <map>
using namespace std;
#define ll long long
#define add push_back
#define len(a) ((int)(a).size())
map<ll, ll> dp[70];
long long count_tastiness(long long x, vector<long long> a) {
dp[0][0] = 1;
for(int i = 0; i <= len(a) + 7; i++){
for(auto [key, value] : dp[i]){
dp[i + 1][((key + (i >= len(a) ? 0 : a[i])) / 2)] += value;
if((i >= len(a) ? 0 : a[i]) + key >= x) dp[i + 1][(key + (i >= len(a) ? 0 : a[i]) - x) / 2] += value;
}
}
ll ret = 0;
for(auto [key, value] : dp[len(a) + 7]){
ret += value;
}
return ret;
}
# | 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... |