CF984D XOR-pyramid

原题链接:http://codeforces.com/contest/984/problem/D

XOR-pyramid

For an array b b of length m we define the function f f as

f(b)={b[1]if m=1f(b[1]b[2],b[2]b[3],,b[m1]b[m])otherwise,

where is bitwise exclusive OR.

For example, f(1,2,4,8)=f(12,24,48)=f(3,6,12)=f(36,612)=f(5,10)=f(510)=f(15)=15
You are given an array a a and a few queries. Each query is represented as two integers l and r r . The answer is the maximum value of f on all continuous subsegments of the array al,al+1,,ar a l , a l + 1 , ⋯ , a r .

Input

The first line contains a single integer n(1n5000) n ( 1 ≤ n ≤ 5000 ) — the length of a a .

The second line contains n integers a1,a2,,an(0ai2301) a 1 , a 2 , ⋯ , a n ( 0 ≤ a i ≤ 2 30 − 1 ) — the elements of the array.

The third line contains a single integer q(1q100000) q ( 1 ≤ q ≤ 100000 ) — the number of queries.

Each of the next q q lines contains a query represented as two integers l,r(1lrn).

Output

Print q q lines — the answers for the queries.

Examples
input

3
8 4 1
2
2 3
1 2

output

5
12

input

6
1 2 4 8 16 32
4
1 6
2 5
3 4
1 2

output

60
30
12
3

Note

In first sample in both queries the maximum value of the function is reached on the subsegment that is equal to the whole segment.

In second sample, optimal segment for first query are [3,6], for second query — [2,5] [ 2 , 5 ] , for third — [3,4] [ 3 , 4 ] , for fourth — [1,2] [ 1 , 2 ] .

题解

手动模拟一下,不难发现每个数出现的次数与杨辉三角形相同,设 sum[i][j]=f(b[i],b[i+1],,b[j]) s u m [ i ] [ j ] = f ( b [ i ] , b [ i + 1 ] , ⋯ , b [ j ] ) ,就有与杨辉三角形相同的性质,即 sum[i][j]=sum[i][j1]sum[i+1][j] s u m [ i ] [ j ] = s u m [ i ] [ j − 1 ] ⊕ s u m [ i + 1 ] [ j ] ,这样就可以 O(n2) O ( n 2 ) 处理出所有区间的 sum s u m ,再加一个简单的区间 dp d p 即可 AC A C

代码
#include<bits/stdc++.h>
using namespace std;
const int M=5005;
int sum[M][M],dp[M][M],n,m,a,b;
void in(){scanf("%d",&n);for(int i=1;i<=n;++i)scanf("%d",&sum[i][i]),dp[i][i]=sum[i][i];}
void ac()
{
    for(int len=2;len<=n;++len)for(int i=1,j;i<=n-len+1;++i)
    j=i+len-1,sum[i][j]=sum[i][j-1]^sum[i+1][j],dp[i][j]=max(max(dp[i][j-1],dp[i+1][j]),sum[i][j]);
    scanf("%d",&m);
    while(m--)scanf("%d%d",&a,&b),printf("%d\n",dp[a][b]);
}
int main(){in();ac();}
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

ShadyPi

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值