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