# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
1083115 | beaconmc | Packing Biscuits (IOI20_biscuits) | C++17 | 1057 ms | 348 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(18);
ll X;
// unordered_map<ll,ll> dps;
// ll hashs(ll a, ll b){
// return b*18 + a;
// }
// ll cnt = 0;
// ll dp(ll pos, ll add){
// cnt++;
// if (dps.count(hashs(pos, add))) return dps[hashs(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[hashs(pos, add)] = temp;
// return temp;
// }
long long count_tastiness(long long x, std::vector<long long> a) {
X = x;
FOR(i,0,18) A[i] = 0;
// dps.clear();
// dps.reserve(1<<19);
FOR(i,0,A.size()) A[i] = a[i];
ll ans = 0;
FOR(cnt,0,200001){
ll carry = 0;
bool flag = false;
FOR(i,0,18){
carry += A[i];
if (cnt & (1<<i)){
if (carry < x){
flag = true;
break;
}
carry -= x;
}
carry /= 2;
}
if (!flag) ans++;
}
return ans;
}
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... |