# | Time | Username | Problem | Language | Result | Execution time | Memory |
---|---|---|---|---|---|---|---|
137988 | sebinkim | Bitwise (BOI06_bitwise) | C++14 | 2 ms | 380 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.
#include <bits/stdc++.h>
using namespace std;
int S[111], L[111], R[111];
int n, k, s;
bool check(int t)
{
int i, j;
bool f, ret;
ret = 1;
for(i=1, j=1; i<=k; i++){
for(f=0; j<=S[i]; j++){
if(L[j] & R[j] & t){
L[j] -= t; R[j] -= t;
f = 1;
}
}
j = S[i - 1] + 1;
for(; j<=S[i]; j++){
if(R[j] & t){
if(f) R[j] = t - 1;
else f = 1;
}
}
ret &= f;
}
for(i=1; i<=n; i++){
if(R[i] & t){
if(ret) L[i] = 0, R[i] -= t;
else R[i] = t - 1;
}
}
return ret;
}
int main()
{
int i;
scanf("%d%d", &n, &k);
for(i=1; i<=k; i++){
scanf("%d", S + i);
S[i] += S[i - 1];
}
for(i=1; i<=n; i++){
scanf("%d%d", L + i, R + i);
}
for(i=30; i>=0; i--){
if(check(1 << i)){
s |= 1 << i;
}
}
printf("%d\n", s);
return 0;
}
Compilation message (stderr)
# | Verdict | Execution time | Memory | Grader output |
---|---|---|---|---|
Fetching results... |