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;
typedef long long int64;
const int maxn = 1e2 + 2;
const int maxbit = 200;
int64 dp[maxn][maxn][maxbit];
int64 pref [maxn];
int64 arr[maxn];
int main() {
int n,a,b;
cin >> n >> a >> b;
for (int i = 1; i <= n; i++){
cin >> arr[i];
pref[i] = pref[i-1] + arr[i];
dp[i][1][pref[i]] = 1;
}
for (int k = 2; k <= b; k++){
for (int r = 1; r <= n; r++){
for (int l = 1; l <= r; l++){
for (int ans = 0; ans < maxbit; ans++){
for (int to = 0; to < maxbit; to++){
if (((to | (pref[r] - pref[l - 1])) == ans)) dp[r][k][ans] |= dp[l-1][k-1][to];
}
}
}
}
}
// for (int i = 1; i <= b; i++){
// for (int j = 1; j <= n; j++){
// cout << setw(10) << dp[j][i] << " ";
// }
// cout << "\n";
// }
int64 rs = 1e15;
for (int i = a; i <= b; i++){
for (int j = 0; j < maxbit; j++)
rs = min(rs, dp[n][i][j] ? j: 50 * 1ll);
}
cout << rs << "\n";
return 0;
}
# | 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... |