# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
45003 | RezwanArefin01 | Bali Sculptures (APIO15_sculpture) | C++14 | 43 ms | 1048 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.
#pragma GCC optimize("Ofast,unroll-loops,no-stack-protector")
#pragma GCC target("sse,sse2,sse3,ssse3,sse4,popcnt,abm,mmx,avx,tune=native")
#include <bits/stdc++.h>
using namespace std;
typedef long long ll;
typedef pair<int, int> ii;
int n, A, B, a[2001]; ll C[2001][2001];
bool dp[110][110];
int main(int argc, char const *argv[]) {
#ifdef LOCAL_TESTING
freopen("in", "r", stdin);
#endif
scanf("%d %d %d", &n, &A, &B);
for(int i = 1; i <= n; i++)
scanf("%d", &a[i]);
for(int i = 1; i <= n; i++) {
C[i][i] = a[i];
for(int j = i + 1; j <= n; j++)
C[i][j] = C[i][j - 1] + a[j];
}
if(A == 0) {
// todo
} else {
ll mask = (1ll << 36) - 1;
#define nyc(a, b) ((a & b) == a)
for(int b = 35; b >= 0; b--) {
mask ^= 1ll << b;
for(int i = 1; i <= n; i++)
dp[1][i] = nyc(C[1][i], mask);
for(int k = 2; k <= B; k++) {
for(int i = 1; i <= n; i++) { dp[k][i] = 0;
for(int j = 1; j < i; j++)
dp[k][i] |= (dp[k - 1][j] & nyc(C[j + 1][i], mask));
}
}
bool f = 0;
for(int i = A; i <= B; i++) if(dp[i][n]) f = 1;
if(!f) mask ^= 1 << b;
} printf("%d\n", mask);
}
}
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... |