#include <bits/stdc++.h>
/*#include <ext/pb_ds/assoc_container.hpp>
#include <ext/pb_ds/tree_policy.hpp>
#include <ext/pb_ds/detail/standard_policies.hpp>*/
#define pb push_back
#define mp make_pair
#define sz(s) ((int)(s.size()))
#define all(s) s.begin(), s.end()
#define rep(i, a, n) for (int i = a; i <= n; ++i)
#define per(i, n, a) for (int i = n; i >= a; --i)
#define onlycin ios_base::sync_with_stdio(false); cin.tie(0)
#define F first
#define S second
using namespace std;
// using namespace __gnu_pbds;
typedef long long ll;
typedef unsigned long long ull;
/*typedef tree<
pair < int, int >,
null_type,
less< pair < int, int > >,
rb_tree_tag,
tree_order_statistics_node_update>
ordered_set;*/
// find_by_order() order_of_key()
const int MAXN = (int)5e5+228;
const char nxtl = '\n';
const int mod = (int)1e9+7;
const double eps = (double)1e-7;
template<typename T> inline bool updmin(T &a, const T &b) {return a > b ? a = b, 1 : 0;}
template<typename T> inline bool updmax(T &a, const T &b) {return a < b ? a = b, 1 : 0;}
int n, l, r, a[MAXN];
int dp[MAXN];
inline bool check(ll lim, ll mid, ll MOD) {
dp[0] = 0;
rep(i, 1, n) {
ll cur = 0ll;
dp[i] = n+n;
per(j, i, 1) {
cur += a[j];
if(cur >= lim) break;
if(cur % MOD < mid)
updmin(dp[i], dp[j-1]+1);
}
}
return dp[n] <= r;
}
int main() {
#ifdef accepted
freopen(".in", "r", stdin);
freopen(".out", "w", stdout);
#endif
onlycin;
cin >> n >> l >> r;
rep(i, 1, n) cin >> a[i];
int last = 41;
ll res = 0ll;
per(bit, 40, 0) {
ll lim = (1ll << 41ll);
if(last == 41) lim = (1ll << bit*1ll);
if(!check(lim, (1ll<<bit*1ll), (1ll << last*1ll))) {
// cerr << bit << nxtl;
res |= (1ll << bit*1ll);
last = bit;
}
}
cout << res << nxtl;
return 0;
}
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
248 KB |
Output is correct |
2 |
Incorrect |
1 ms |
352 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
424 KB |
Output is correct |
2 |
Incorrect |
1 ms |
464 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
2 ms |
476 KB |
Output is correct |
2 |
Incorrect |
1 ms |
528 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
532 KB |
Output is correct |
2 |
Incorrect |
1 ms |
532 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |
# |
Verdict |
Execution time |
Memory |
Grader output |
1 |
Correct |
1 ms |
532 KB |
Output is correct |
2 |
Incorrect |
2 ms |
532 KB |
Output isn't correct |
3 |
Halted |
0 ms |
0 KB |
- |