# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1082830 | beaconmc | Packing Biscuits (IOI20_biscuits) | C++14 | 1041 ms | 6740 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
#include "biscuits.h"
#include <bits/stdc++.h>
typedef long long ll;
#define FOR(i,x,y) for(ll i=x; i<y; i++)
#define FORNEG(i,x,y) for(ll i=x; i>y; i--)
using namespace std;
vector<ll> A(17);
ll X;
unordered_map<ll,unordered_map<ll,ll>> dps;
ll cnt = 0;
ll dp(ll pos, ll add){
cnt++;
if (dps[pos].count(add)) return dps[pos][add];
if (pos>=A.size()) return 1;
ll temp = 0;
if (add==0){
ll cur = 0;
while (cur <= X && cur <= A[pos]){
temp += dp(pos+1, (A[pos]-cur)/2);
cur += X;
}
}else{
ll idk = (A[pos] + add);
ll cur = 0;
while (cur <= X && cur <= idk){
temp += dp(pos+1, (idk-cur)/2);
cur += X;
}
}
dps[pos][add] = temp;
return temp;
}
long long count_tastiness(long long x, std::vector<long long> a) {
X = x;
FOR(i,0,200) A[i] = 0;
dps.clear();
FOR(i,0,a.size()) A[i] = a[i];
// cout << cnt << endl;
// cout << dps[16].size() << endl;
// cout << dp(0,0) << endl;
// cout << cnt << endl;
return dp(0,0);
}
Compilation message (stderr)
# | 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... |