이 제출은 이전 버전의 oj.uz에서 채점하였습니다. 현재는 제출 당시와는 다른 서버에서 채점을 하기 때문에, 다시 제출하면 결과가 달라질 수도 있습니다.
#include "biscuits.h"
#include <bits/stdc++.h>
#define pb push_back
#define f first
#define sc second
using namespace std;
typedef long long int ll;
typedef string str;
ll count_tastiness(ll X, vector<ll> A){
int K = A.size();
A.pb(0);
ll ans = 0;
function<void(int)> bf = [&](int in){
if(in == K){
ans++;
return;
}
if(A[in] >= X){
A[in+1]+=(A[in]-X)/2;
bf(in+1);
A[in+1]-=(A[in]-X)/2;
}
A[in+1]+=A[in]/2;
bf(in+1);
A[in+1]-=A[in]/2;
};
bf(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... |