Submission #394944

#TimeUsernameProblemLanguageResultExecution timeMemory
394944rocks03Packing Biscuits (IOI20_biscuits)C++14
21 / 100
1097 ms22436 KiB
//#pragma GCC target("avx2") //#pragma GCC optimization("O3") //#pragma GCC optimization("unroll-loops") #include<bits/stdc++.h> using namespace std; #define ll long long #define pii pair<int, int> #define pll pair<ll, ll> #define ff first #define ss second #define pb push_back #define SZ(x) ((int)(x).size()) #define all(x) x.begin(), x.end() #define rep(i, a, b) for(int i = (a); i < (b); i++) #define per(i, a, b) for(int i = (a); i >= (b); i--) mt19937 rng(chrono::steady_clock::now().time_since_epoch().count()); ll x; vector<ll> a; map<pll, ll> memo; ll f(int ind, ll add){ if(ind >= SZ(a) && add < x){ return 1; } if(memo.count({ind, add})){ return memo[{ind,add}]; } ll& ans = memo[{ind, add}]; if(ind < SZ(a)) add += a[ind]; ans = f(ind + 1, add / 2); if(add >= x){ add -= x; ans += f(ind + 1, add / 2); } return ans; } long long count_tastiness(long long X, vector<long long> A){ while(SZ(a) < 60) a.pb(0); a = A, x = X; memo.clear(); return f(0, 0); }
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...
#Verdict Execution timeMemoryGrader output
Fetching results...