# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
45870 | Extazy | Bali Sculptures (APIO15_sculpture) | C++17 | 109 ms | 1148 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 <bits/stdc++.h>
#define endl '\n'
using namespace std;
const int N = 2007;
const int INF = N + 7;
int n,a,b;
long long arr[N];
long long ans;
long long val;
bool used[N][N],state[N][N];
bool used2[N];
int state2[N];
bool recurse(int pos, int groups) {
if(pos>n) return a<=groups && groups<=b;
if(used[pos][groups]) return state[pos][groups];
used[pos][groups]=true;
int i;
long long sum=0;
for(i=pos;i<=n;i++) {
sum+=arr[i];
if((sum&val)==sum) if(recurse(i+1,groups+1)) return state[pos][groups]=true;
}
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... |