# | TimeUTC-0 | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
102015 | Nicholas_Patrick | Bali Sculptures (APIO15_sculpture) | C++17 | 78 ms | 512 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>
using namespace std;
int n, a, b;
vector <long long> y, psy;
vector <int> memo;
int depth;
int checkPossibility(long long x, long long toDeduct=0, int checkFrom=0){
if(checkFrom==n)
return 0;
if(memo[checkFrom])
return memo[checkFrom];
int ret=n;
int curres;
for(int i = checkFrom;i < n;i ++){
if(((psy[i]-toDeduct)|x)==x){
depth++;
curres=checkPossibility(x, psy[i], i+1);
if(curres+depth>=a)
ret=min(ret, curres);
depth--;
}
if(psy[i]-toDeduct>x)
break;
}
return memo[checkFrom]=ret+1;
}
int main(){
scanf("%d %d %d", &n, &a, &b);
y.resize(n);
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... |