이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
#define sz(x) ((int)x.size())
using namespace std;
typedef long long ll;
vector<ll> b;
ll ans, glob_x;
void rec(int ps){
if (ps == sz(b)){
ans++;
return;
}
ll mem = (b[ps]) / 2;
if (ps + 1 < sz(b)) {
b[ps + 1] += mem;
}
rec(ps + 1);
if (ps + 1 < sz(b)){
b[ps + 1] -= mem;
}
if (b[ps] >= glob_x) {
mem = (b[ps] - glob_x) / 2;
if (ps + 1 < sz(b)) {
b[ps + 1] += mem;
}
rec(ps + 1);
if (ps + 1 < sz(b)){
b[ps + 1] -= mem;
}
}
}
long long count_tastiness(long long x, std::vector<long long> a) {
glob_x = x;
b = a;
ans = 0;
rec(0);
return ans;
}
# | 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... |