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