C. Boboniu and Bit Operations(思维)
Posted zjj0624
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了C. Boboniu and Bit Operations(思维)相关的知识,希望对你有一定的参考价值。
题意
给你两个数组a,b,a数组有n个元素,b数组有m个元素。
对于每个
c
i
c_i
ci,等于
a
i
∣
b
j
a_i|b_j
ai∣bj(1<=j<=m),让你求
c
1
∣
c
2
∣
c
3
.
.
.
.
∣
c
n
c_1|c_2|c_3....|c_n
c1∣c2∣c3....∣cn的最小值。
1
<
=
n
<
=
200
,
1
<
=
m
<
=
200
1<=n<=200,1<=m<=200
1<=n<=200,1<=m<=200
0
<
=
a
i
<
=
2
9
0<=a_i<=2^9
0<=ai<=29
0
<
=
b
i
<
=
2
9
0<=b_i<=2^9
0<=bi<=29
思路
我们从数据范围中可以看出,
c
1
∣
c
2
∣
c
3
.
.
.
.
∣
c
n
c_1|c_2|c_3....|c_n
c1∣c2∣c3....∣cn的范围是
[
0
,
2
9
]
[0,2^9]
[0,29],数据范围比较的小,我们可以直接来枚举答案。
但是怎么判断这是否是一个可行解呢?
根据OR的性质,
x
∣
y
>
=
m
a
x
(
x
,
y
)
x|y>=max(x,y)
x∣y>=max(x,y)
我们只需要判断答案A,是否对于每个
c
i
,
c_i,
ci,都满足
A
=
A
∣
c
i
A=A|c_i
A=A∣ci,就可以求出答案了。
时间复杂度是
o
(
n
2
∗
2
9
)
o(n^2*2^9)
o(n2∗29)
代码
#include <bits/stdc++.h>
#define ll long long
#define fi first
#define se second
#define pb push_back
#define me memset
const int N = 210;
const int MOD = 1e9+7;
const int INF = 0x3f3f3f3f;
using namespace std;
typedef pair<int,int> PII;
typedef pair<ll,ll> PLL;
int a[N],b[N];
int main()
{
int n,m;
cin>>n>>m;
for(int i=1 ; i<=n ; i++) cin>>a[i];
for(int i=1 ; i<=m ; i++) cin>>b[i];
for(int i=0 ; i<=(1<<9) ; i++)
{
int cnt=0;
for(int j=1 ; j<=n ; j++)
{
bool flag=false;
for(int k=1 ; k<=m ; k++)
{
if(((a[j]&b[k])|i)==i)
{
flag=true;
break;
}
}
if(flag) cnt++;
else break;
}
if(cnt==n)
{
cout<<i<<endl;
break;
}
}
return 0;
}
以上是关于C. Boboniu and Bit Operations(思维)的主要内容,如果未能解决你的问题,请参考以下文章
A. Boboniu Likes to Color Balls1000 / 思维
hash (codeforces 1394B Boboniu Walks on Graph )