#include <bits/stdc++.h>
#define pb push_back
#define ll long long
#define int 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)
{
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>(min<int>(2e5, 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 < min<int>(2e5, 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;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Runtime error |
461 ms |
197288 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Correct |
1 ms |
212 KB |
Output is correct |
3 |
Correct |
1 ms |
212 KB |
Output is correct |
4 |
Correct |
1 ms |
212 KB |
Output is correct |
5 |
Correct |
1 ms |
212 KB |
Output is correct |
6 |
Correct |
1 ms |
212 KB |
Output is correct |
7 |
Correct |
1 ms |
212 KB |
Output is correct |
8 |
Correct |
1 ms |
212 KB |
Output is correct |
9 |
Correct |
1 ms |
212 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
151 ms |
5288 KB |
Output is correct |
2 |
Correct |
98 ms |
4632 KB |
Output is correct |
3 |
Correct |
118 ms |
4956 KB |
Output is correct |
4 |
Correct |
1 ms |
300 KB |
Output is correct |
5 |
Correct |
1 ms |
212 KB |
Output is correct |
6 |
Correct |
1 ms |
220 KB |
Output is correct |
7 |
Correct |
1 ms |
212 KB |
Output is correct |
8 |
Correct |
310 ms |
5220 KB |
Output is correct |
9 |
Correct |
262 ms |
5224 KB |
Output is correct |
10 |
Correct |
2 ms |
296 KB |
Output is correct |
11 |
Correct |
6 ms |
340 KB |
Output is correct |
12 |
Correct |
45 ms |
992 KB |
Output is correct |
13 |
Correct |
311 ms |
5160 KB |
Output is correct |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Runtime error |
236 ms |
197684 KB |
Execution killed with signal 11 |
2 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
1 ms |
212 KB |
Output is correct |
2 |
Runtime error |
461 ms |
197288 KB |
Execution killed with signal 11 |
3 |
Halted |
0 ms |
0 KB |
- |