# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
896075 | AgentPengin | Bali Sculptures (APIO15_sculpture) | C++14 | 280 ms | 2904 KiB |
This submission is migrated from previous version of oj.uz, which used different machine for grading. This submission may have different result if resubmitted.
/**
* author: AgentPengin ( Độc cô cầu bại )
* created: 23.12.2022 10:08:02
* too lazy to update time
**/
#include<bits/stdc++.h>
#define EL '\n'
#define fi first
#define se second
#define NAME "TASK"
#define ll long long
#define lcm(a,b) (a/gcd(a,b))*b
#define db(val) "["#val" = " << (val) << "] "
#define bend(v) (v).begin(),(v).end()
#define sz(v) (int)(v).size()
#define ex exit(0)
#define int ll
using namespace std;
const ll mod = 1e9 + 7;
const int inf = 0x1FFFFFFF;
const int MAXN = 1e5 + 5;
int n,A,B,pre[2005];
namespace sub1 {
ll ans = 0;
bool dp[2009][2009];
bool check(int bit) {
for (int i = 0;i <= 100;i++) {
for (int j = 0;j <= 100;j++) dp[i][j] = false;
}
dp[0][0]=true;
for (int i = 0;i < n;i++) {
for (int j = 0;j <= i;j++) {
for (int t = i + 1;t <=n;t++) {
int val = pre[t]-pre[i];
if (val >> bit & 1 ^ 1 && (val | ans) <= ans + (1LL << bit) - 1) dp[t][j+1] |=dp[i][j];
}
}
}
for(int j = A;j <= B;j++) {
if (dp[n][j]) return true;
}
return false;
}
void solve() {
for (int bit = 40;bit >= 0;bit--) {
if (!check(bit)) ans |= (1LL << bit);
}
cout << ans;
}
}
namespace sub2 {
ll ans = 0;
int f[2005];
bool check(int bit) {
memset(f,0x3f,sizeof f);
f[0] = 0;
for (int i = 0;i < n;i++) {
for (int t = i + 1; t <= n;t++) {
int val = pre[t] - pre[i];
if (val >> bit & 1 ^ 1 && (val | ans) <= ans + (1LL << bit) - 1) f[t] = min(f[t],f[i] + 1);
}
}
return f[n] <= B;
}
void solve() {
for(int bit = 40;bit >= 0;bit--) {
if (!check(bit)) ans |= (1LL << bit);
}
cout << ans;
}
}
signed main() {
ios_base::sync_with_stdio(0);cin.tie(0);cout.tie(0);
if (ifstream(NAME".inp")) {
freopen(NAME".inp","r",stdin);
freopen(NAME".out","w",stdout);
}
cin >> n >> A >> B;
for (int i = 1;i <= n;i++) {
int x; cin >> x;
pre[i]=pre[i-1] + x;
}
if (n <=100)sub1::solve();
else sub2::solve();
cerr << "\nTime elapsed: " << 1000 * clock() / CLOCKS_PER_SEC << "ms\n";
return 0;
}
// agent pengin wants to take apio (with anya-san)
Compilation message (stderr)
# | 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... |