#P1926. Interview
Interview
Interview
题面翻译
定义函数为整数序列中 的或值(位运算中的)。现在有两个整数序列和,请你确定和的值,使得的值最大。
输出这个最大的和
定义函数$F(X,L,R)$为整数序列$X$中$X_L,X_{L+1},X_{L+2}...X_R$
的或值(位运算中的$OR$)。现在有两个整数序列$A$和$B$,请你确定$L$和$R$的值,使得$F(A,L,R)+F(B,L,R)$的值最大。
输出这个最大的和
题目描述
Blake is a CEO of a large company called "Blake Technologies". He loves his company very much and he thinks that his company should be the best. That is why every candidate needs to pass through the interview that consists of the following problem.
We define function as a bitwise OR of integers , where is the -th element of the array . You are given two arrays and of length . You need to determine the maximum value of sum among all possible .
输入格式
The first line of the input contains a single integer ( ) — the length of the arrays.
The second line contains integers ( ).
The third line contains integers ( ).
输出格式
Print a single integer — the maximum value of sum among all possible .
样例 #1
样例输入 #1
5
1 2 4 3 2
2 3 3 12 1
样例输出 #1
22
样例 #2
样例输入 #2
10
13 2 7 11 8 4 9 8 5 1
5 7 18 9 2 3 0 11 8 6
样例输出 #2
46
提示
Bitwise OR of two non-negative integers and is the number , such that each of its digits in binary notation is if and only if at least one of or have in the corresponding position in binary notation.
In the first sample, one of the optimal answers is and , because $ f(a,2,4)+f(b,2,4)=(2\ OR\ 4\ OR\ 3)+(3\ OR\ 3\ OR\ 12)=7+15=22 $ . Other ways to get maximum value is to choose and , and , and , and , and , or and .
In the second sample, the maximum value is obtained for and .