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 <cstring>
#include <algorithm>
using namespace std;
int a[2010];
int sum[2010];
int N,A,B;
int lim;
bool d[101][101][101];
int d2[2001][2001];
bool chk[101][101][101];
bool chk2[2001][2001];
int f(int x,int p){
if(x>N){
if(p==N)return 0;
return 1e9;
}
int& ret=d2[x][p];
if(chk2[x][p])return ret;
ret=f(x+1,p);
chk2[x][p]=1;
if(((sum[x]-sum[p])|lim)==lim){
ret=min(ret,f(x+1,x)+1);
}
return ret;
}
bool f(int x,int p,int cnt){
if(x>N)return p==N&&cnt>A&&cnt<=B+1;
if(cnt>B)return 0;
bool& ret=d[x][p][cnt];
if(chk[x][p][cnt])return ret;
ret=0;
chk[x][p][cnt]=1;
if(((sum[x]-sum[p])|lim)==lim){
ret|=f(x+1,x,cnt+1);
}
ret|=f(x+1,p,cnt);
return ret;
}
int main(){
scanf("%d%d%d",&N,&A,&B);
for(int i=1;i<=N;i++){
scanf("%d",&a[i]);
sum[i]=sum[i-1]+a[i];
}
if(A==1){
lim=(1<<30)-1;
for(int i=29;i>=0;i--){
memset(chk2,0,sizeof(chk2));
lim^=(1<<i);
if(f(1,0)>B){
lim^=(1<<i);
}
}
}else{
lim=(1<<30)-1;
for(int i=29;i>=0;i--){
memset(chk,0,sizeof(chk));
lim^=(1<<i);
if(!f(1,0,1)){
lim^=(1<<i);
}
}
}
printf("%d",lim);
}
# | 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... |