Submission #1042658

#TimeUsernameProblemLanguageResultExecution timeMemory
1042658AmirAli_H1Packing Biscuits (IOI20_biscuits)C++17
100 / 100
7 ms1372 KiB
// In the name of Allah
 
#include <bits/stdc++.h>
#include "biscuits.h"
using namespace std;
 
typedef		long long int			ll;
typedef		long double				ld;
typedef		pair<int, int>			pii;
typedef		pair<ll, ll>			pll;
typedef		complex<ld>				cld;
 
#define		all(x)					(x).begin(),(x).end()
#define		len(x)					((ll) (x).size())
#define		F						first
#define		S						second
#define		pb						push_back
#define		sep						' '
#define		endl					'\n'
#define		Mp						make_pair
#define		kill(x)					cout << x << '\n', exit(0)
#define		set_dec(x)				cout << fixed << setprecision(x);
#define		file_io(x,y)			freopen(x, "r", stdin); freopen(y, "w", stdout);
mt19937 rng(chrono::steady_clock::now().time_since_epoch().count());

const int maxn = 60 + 4;

int n; ll R;
ll A[maxn]; vector<ll> ls;
ll dp[maxn];

ll cal(int i, ll x) {
	if (x == 0) return 0;
	else if (x >= (1ll << i)) return dp[i];
	int j = __lg(x);
	return dp[j] + cal(j, min(x - (1ll << j), ls[j]));
}

ll count_tastiness(ll x, vector<ll> Ax) {
	n = 60; Ax.resize(n); R = x;
	for (int i = 0; i < n; i++) A[i] = Ax[i];
	
	ll sm = 0; ls.clear();
	for (int i = 0; i < n; i++) {
		sm += (A[i] << i);
		ll valx = (sm / R);
		ls.pb(max(0ll, valx - (1ll << i) + 1));
	}
	
	dp[0] = 1;
	for (int i = 1; i <= n; i++) {
		dp[i] = dp[i - 1] + cal(i - 1, ls[i - 1]);
	}
	return dp[n];
}
#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...