#include <bits/stdc++.h>
#define int long long
// #pragma GCC target("avx2,bmi,bmi2,lzcnt,popcnt")
// #pragma GCC optimize("O3")
// #pragma GCC optimize("unroll-loops")
#define F first
#define S second
#define mp make_pair
#define pb push_back
#define all(x) x.begin(), x.end()
#define kill(x) cout << x << "\n", exit(0);
#define pii pair<int, int>
#define pll pair<long long, long long>
#define endl "\n"
using namespace std;
typedef long long ll;
// typedef __int128_t lll;
typedef long double ld;
const int MAXN = (int)2000 + 7;
const int MOD = 998244353;
const ll INF = (ll)1e18 + 7;
const int LG = 42;
int n, m, k, tmp, t, tmp2, tmp3, tmp4, u, v, w, q, ans, x, sar, tah, flag;
int arr[MAXN], ps[MAXN], A, B;
bool dp[MAXN][MAXN];
int32_t main() {
#ifdef LOCAL
freopen("inp.in", "r", stdin);
freopen("res.out", "w", stdout);
#else
ios::sync_with_stdio(0); cin.tie(0); cout.tie(0);
#endif
cin >> n >> A >> B;
for (int i=1; i<=n; i++) {
cin >> arr[i];
ps[i] = ps[i-1]+arr[i];
}
ans = 0;
for (int k=LG-1; k>=0; k--) {
memset(dp, 0, sizeof(dp));
dp[0][0] = 1;
for (int i=0; i<=n; i++) {
for (int j=0; j<=B; j++) {
if (!dp[i][j] || j == B) continue;
for (int o=i+1; o<=n; o++) {
if (ans - (ans|(((ps[o]-ps[i])/(1<<k)) * (1<<k))) == 0) {
dp[o][j+1] = 1;
}
}
}
}
flag = 0;
for (int i=A; i<=B; i++) if (dp[n][i]) flag = 1;
if (!flag) ans += (1<<k);
// else {
// cout << "! " << k << endl;
// }
}
cout << ans << endl;
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... |