codeforces 1395C(暴力枚举)
程序员文章站
2022-06-09 17:40:45
...
题意描述
思路
由于题目给的数据量太小,所以我们可以暴力枚举 [ 0 , 512 ] [0,512] [0,512]这个区间,对于每个答案进行check,如果第一次check成功,则该答案肯定最小。check的条件是 ( ( a [ i ] & a [ j ] ) ∥ x ) = = x ((a[i]\&a[j])\|x)==x ((a[i]&a[j])∥x)==x。
AC代码
#include<bits/stdc++.h>
#define x first
#define y second
#define PB push_back
#define mst(x,a) memset(x,a,sizeof(x))
#define all(a) begin(a),end(a)
#define rep(x,l,u) for(ll x=l;x<u;x++)
#define rrep(x,l,u) for(ll x=l;x>=u;x--)
#define sz(x) x.size()
#define IOS ios::sync_with_stdio(false);cin.tie(0);
using namespace std;
typedef unsigned long long ull;
typedef pair<int,int> PII;
typedef pair<long,long> PLL;
typedef pair<char,char> PCC;
typedef long long ll;
const int N=205;
const int M=1e6+10;
const int INF=0x3f3f3f3f;
const int MOD=1e9+7;
int a[N],b[N],n,m;
bool check(int x){
rep(i,1,n+1){
bool flag=false;
rep(j,1,m+1){
int res=a[i]&b[j];
if((res|x)==x){
flag=true;
break;
}
}
if(!flag) return false;
}
return true;
}
void solve(){
cin>>n>>m;
rep(i,1,n+1) cin>>a[i];
rep(i,1,m+1) cin>>b[i];
rep(i,0,513){
if(check(i)){
cout<<i<<endl;
break;
}
}
}
int main(){
//IOS;
//freopen("test.txt", "r", stdin);
//freopen("test.txt", "w", stdout);
//int t;cin>>t;
//while(t--)
solve();
return 0;
}
推荐阅读
-
Codeforces 851C - Five Dimensional Points - 数学 暴力
-
暴力枚举_简单
-
【 CodeForces - 96 B 】 Lucky Numbers (easy) 暴力打表
-
C++之暴力算法突破二进制枚举子集(实例)
-
B. Power Sequence(数学+枚举)Codeforces Round #666 (Div. 2)
-
hdu 1427 速算24点【暴力枚举】
-
CodeForces - 908C (暴力枚举)
-
Codeforces 1321 C. Remove Adjacent(贪心枚举)
-
Codeforces Round #661 C. Boats Competition(思维+暴力枚举)
-
CodeForces - 761C Dasha and Password CodeForces (枚举)