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;
#define boost ios_base::sync_with_stdio(false); cin.tie(0); cout.tie(0)
#define fi first
#define se second
#define debug(x) cerr << " - " << #x << ": " << x << endl;
#define debugs(x, y) cerr << " - " << #x << ": " << x << " " << #y << ": " << y << endl;
#define debugii(x) cerr << " - " << #x << ": " << x.fi<<","<<x.se << endl;
#define sep() cerr << "--------------------" << endl;
#define all(x) (x).begin(),(x).end()
#define sz(x) (ll)x.size()
#define ll long long
#define ii pair<int,int>
#define v vector<int>
#define vii vector<ii>
#define vv vector<vector<int> >
#define mp make_pair
#define INF 100000000000000
#define pb push_back
#define EPS 1e-9
const int MOD = 1000000007; // 998244353
ll tab[2500],dp[2500][2500];
ll n,A,B;
ll solve(int idx,int k,ll sum,int nb){
//debugs(idx,k);
//debug(sum);
//if(k>B)return LLONG_MAX;
if(idx==n&&((k+1)>=A)&&((k+1)<=B))return sum;
if(idx==n)return LLONG_MAX;
ll ans=INF;
//debug(ans);
ans=min(ans,solve(idx+1,k,sum+tab[idx],nb+1));
if(nb>=1)ans=min(ans,sum|solve(idx+1,k+1,tab[idx],1));
return ans;
}
int main(){
boost;
memset(dp,-1,sizeof dp);
cin>>n>>A>>B;
for (int i = 0; i < n; ++i)
cin>>tab[i];
cout<<solve(0,0,0,0);
return 0;
}
//long long
//array bounds
//special cases
//binary search
| # | 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... |