Submission #790696

#TimeUsernameProblemLanguageResultExecution timeMemory
790696Trisanu_DasPacking Biscuits (IOI20_biscuits)C++17
Compilation error
0 ms0 KiB
#include <bits/stdc++.h>
#include "biscuits.h"
using namespace std;
#define ll long long
 
ll count_tastiness(ll x, vector<ll> a) {
	vector<ll> D(62, 1);
	a.resize(MX);
	for (int i = 1; i < MX; i++) {
		a[i] = (a[i] << i) + a[i-1];
		ll n = INT_MAX;
		for (int j = i - 1; j > -1; j--) {
			n = min(n, a[j]);
			if (x <= (n >> j)) D[i] += D[j], n -= (x << j);
		}
	}
	return D.back();
}

Compilation message (stderr)

biscuits.cpp: In function 'long long int count_tastiness(long long int, std::vector<long long int>)':
biscuits.cpp:8:11: error: 'MX' was not declared in this scope
    8 |  a.resize(MX);
      |           ^~