303256: CF631A. Interview
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
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)$的值最大。 输出这个最大的和 ``` 定义函数$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 $ f(x,l,r) $ as a bitwise OR of integers $ x_{l},x_{l+1},...,x_{r} $ , where $ x_{i} $ is the $ i $ -th element of the array $ x $ . You are given two arrays $ a $ and $ b $ of length $ n $ . You need to determine the maximum value of sum $ f(a,l,r)+f(b,l,r) $ among all possible $ 1<=l<=r<=n $ . ![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF631A/f2bd69219825f65458ef8716e480ba2824aff47f.png)输入输出格式
输入格式
The first line of the input contains a single integer $ n $ ( $ 1<=n<=1000 $ ) — the length of the arrays. The second line contains $ n $ integers $ a_{i} $ ( $ 0<=a_{i}<=10^{9} $ ). The third line contains $ n $ integers $ b_{i} $ ( $ 0<=b_{i}<=10^{9} $ ).
输出格式
Print a single integer — the maximum value of sum $ f(a,l,r)+f(b,l,r) $ among all possible $ 1<=l<=r<=n $ .
输入输出样例
输入样例 #1
5
1 2 4 3 2
2 3 3 12 1
输出样例 #1
22
输入样例 #2
10
13 2 7 11 8 4 9 8 5 1
5 7 18 9 2 3 0 11 8 6
输出样例 #2
46