# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
41172 | ssnsarang2023 | Bali Sculptures (APIO15_sculpture) | C++14 | 200 ms | 2372 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 <cstdio>
#include <algorithm>
#include <cstring>
#include <iostream>
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
const int oo = (int)1e9+7;
int n, lo, hi, f2[2005], f1[105][105];
ll sum[2005], a[2005];
int dp1(int i, int j, const ll &res, const int &lvl) {
if (i == n + 1) return j == 0;
if (f1[i][j] != -1) return f1[i][j];
f1[i][j] = 0;
for (int k = i + 1; k <= n + 1; ++k) {
ll val = sum[i] - sum[k], tmp = ((val >> (ll)(lvl + 1)) << (ll)(lvl + 1));
if ((res | tmp) == res && !((val >> (ll)lvl) & 1ll))
f1[i][j] |= dp1(k, j - 1, res, lvl);
}
return f1[i][j];
}
int dp2(int i, const ll &res, const int &lvl) {
if (i == n + 1) return hi + 1;
if (f2[i] < oo) return f2[i];
f2[i] = 0;
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... |