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;
typedef long long ll;
void speed()
{
ios_base::sync_with_stdio(false);
cin.tie(NULL);
cout.tie(NULL);
}
const int maxn = 100;
int dp[51][21][8001], n, A, B, a[maxn];
void solve()
{
cin >> n >> A >> B;
for (int i = 1; i <= n; i ++)
{
cin >> a[i];
}
dp[0][0][0] = 1;
for (int i = 1; i <= n; i ++)
{
for (int j = 1; j <= B; j ++)
{
int sum = 0;
for (int k = i; k > 0; k --)
{
sum = sum + a[k];
for (int x = 0; x < 8001; x ++)
{
int new_x = (x | sum);
if (dp[k - 1][j - 1][x] == 1)
dp[i][j][new_x] = 1;
}
}
}
}
int best = 100;
for (int j = A; j <= B; j ++)
{
for (int x = 0; x < 8000; x ++)
{
if (dp[n][j][x] != 0)
{
best = min(best, x);
break;
}
}
}
cout << best << endl;
}
int main()
{
solve();
return 0;
}
/**
6 1 3
8 1 2 1 5 4
*/
# | 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... |