#include <bits/stdc++.h>
#define ll long long
#define pb push_back
using namespace std;
ll n,l,r;
ll a[2220];
//ll dp[111][111][111];
ll dp[2220][2220];
/*ll solve(ll i,ll last,ll k,ll sum){
//cout<<"call: "<<i<<' '<<last<<' '<<k<<' '<<sum<<endl;
if(i==n){
if(k>=l&&k<=r&&last==n)return 0;
return -2;
}
ll &ans=dp[i][last][k];
sum+=a[i];
if(ans!=-1)return ans;
ll ans1=solve(i+1,last,k,sum),ans2=solve(i+1,i+1,k+1,0);
if(ans1==-2&&ans2==-2)return ans=-2;
if(ans1==-2)return ans=ans2|sum;
if(ans2==-2)return ans=ans1;
return ans=min(ans1,ans2|sum);
}*/
ll pre[2220];
int main(){
ios::sync_with_stdio(0);cin.tie(0);cout.tie(0);
cin>>n>>l>>r;
for(ll i=1;i<=n;i++){
cin>>a[i];
}
for(ll i=1;i<=n;i++){
pre[i]=a[i]+pre[i-1];
}
//memset(dp,-1,sizeof dp);
//cout<<max(0ll,solve(0,0,0,0))<<endl;
for(int i=1;i<=n;i++){
dp[i][1]=pre[i];
}
for(int k=2;k<=n;k++){
for(int i=k;i<=n;i++){
dp[i][k]=1e18;
ll sum=0;
for(int j=i;j>=k;j--){
sum+=a[j];
dp[i][k]=min(dp[i][k],(sum|dp[j-1][k-1]));
}
}
}
ll ans=1e17;
for(ll i=l;i<=r;i++){
ans=min(ans,dp[n][i]);
}
cout<<ans<<endl;
return 0;
}
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
결과 |
실행 시간 |
메모리 |
Grader output |
1 |
Correct |
2 ms |
384 KB |
Output is correct |
2 |
Incorrect |
2 ms |
384 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |