Submission #838509

# Submission time Handle Problem Language Result Execution time Memory
838509 2023-08-27T10:09:00 Z caganyanmaz Packing Biscuits (IOI20_biscuits) C++17
0 / 100
1000 ms 1750528 KB
#include <bits/stdc++.h>
#define pb push_back
#define ll long long
using namespace std;

//#define DEBUGGING
#ifdef DEBUGGING
#include "../debug.h"
#else
#define debug(x...) void(42)
#endif


constexpr static int MXK = 62;
ll count_tastiness(ll x, vector<ll> a) 
{
	//assert(x == 1);
	while (a.size() < MXK-1)
		a.pb(0);
	for (int i = 0; i < MXK-2; i++)
	{
		ll change = max<ll>((a[i] - x) / 2, 0);
		a[i+1] += change;
		a[i] -= change * 2;
	}
	vector<ll> pf(MXK, 0);
	for (int i = 1; i < MXK; i++)
		pf[i] = pf[i-1]  + (a[i-1] << (i-1));
	vector<vector<ll>> dp(MXK, vector<ll>(x+3, 0)); // Last open bit
	dp[0][0] = 1;
	for (int i = 1; i < MXK; i++)
		for (int j = 0; j < i; j++)
			for (int k = 0; k < x+3; k++)
				if (((pf[i] - pf[j] + (k<<(j-1)))>>(i-1)) >= x)
					dp[i][((pf[i]-pf[j]+(k<<(j-1)))>>(i-1))-x] += dp[j][k];
	ll res = 0;
	for (int i = 0; i < MXK; i++)
		for (int j = 0; j < x + 3; j++)
			res += dp[i][j];
	debug(dp, res);
	return res;
}

# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
2 Runtime error 2 ms 468 KB Execution killed with signal 6
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 0 ms 212 KB Output is correct
2 Incorrect 0 ms 212 KB Output isn't correct
3 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Incorrect 132 ms 5220 KB Output isn't correct
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Execution timed out 1169 ms 1750528 KB Time limit exceeded
2 Halted 0 ms 0 KB -
# Verdict Execution time Memory Grader output
1 Correct 1 ms 212 KB Output is correct
2 Runtime error 2 ms 468 KB Execution killed with signal 6
3 Halted 0 ms 0 KB -