跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2527. Maximum Xor Secondary

    ID: 2533 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 5 上传者: 标签>数据结构模拟双指针编程与模拟算法思想进阶难度共享题库Codeforces英文题面题目来源题面语言

Maximum Xor Secondary

题目描述

B. Maximum Xor Secondary
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Bike loves looking for the second maximum element in the sequence. The second maximum element in the sequence of distinct numbers x1,x2,...,xk (k>1) is such maximum element xj, that the following inequality holds: .

The lucky number of the sequence of distinct positive integers x1,x2,...,xk (k>1) is the number that is equal to the bitwise excluding OR of the maximum element of the sequence and the second maximum element of the sequence.

You've got a sequence of distinct positive integers s1,s2,...,sn (n>1). Let's denote sequence sl,sl+1,...,sr as s[l..r] (1≤l<rn). Your task is to find the maximum number among all lucky numbers of sequences s[l..r].

Note that as all numbers in sequence s are distinct, all the given definitions make sence.

Input

The first line contains integer n (1<n≤105). The second line contains n distinct integers s1,s2,...,sn (1≤si≤109).

Output

Print a single integer − the maximum lucky number among all lucky numbers of sequences s[l..r].

Examples
Input
5
5 2 1 4 3
Output
7
Input
5
9 8 3 5 7
Output
15
Note

For the first sample you can choose s[4..5]={4,3} and its lucky number is (4xor3)=7. You can also choose s[1..2].

For the second sample you must choose s[2..5]={8,3,5,7}.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2171 题。保留原作者与原赛事署名。