이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
#define sz(x) (int)(x).size()
ll count_tastiness(ll x, vector<ll> a) {
while (sz(a) < 60)
a.push_back(0);
ll ret = 1;
vector<vector<ll>> dp(61, vector<ll>(2*x+1, 0));
dp[0][0] = 1;
ll pref = 0;
for (int i = 0; i < 60; i++) {
pref = pref / 2 + a[i];
for (int j = 0; j <= min(pref,x); j++) if (dp[i][j] != 0) {
dp[i+1][pref / 2 - (pref-j) / 2] += dp[i][j];
if (pref - j >= x) {
ret += dp[i][j];
dp[i+1][pref/2-(pref-j-x)/2] += dp[i][j];
}
}
}
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... |