XOR-pyramid(Codeforces Round #483 (Div. 2) )(dp)

For an array bb of length mm we define the function ff as

f(b)={b[1]if m=1f(b[1]b[2],b[2]b[3],,b[m1]b[m])otherwise,f(b)={b[1]if m=1f(b[1]⊕b[2],b[2]⊕b[3],…,b[m−1]⊕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)=15f(1,2,4,8)=f(1⊕2,2⊕4,4⊕8)=f(3,6,12)=f(3⊕6,6⊕12)=f(5,10)=f(5⊕10)=f(15)=15

You are given an array aa and a few queries. Each query is represented as two integers ll and rr. The answer is the maximum value of ff on all continuous subsegments of the array al,al+1,,aral,al+1,…,ar.

Input

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

The second line contains nn integers a1,a2,,ana1,a2,…,an (0ai23010≤ai≤230−1) — the elements of the array.

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

Each of the next qq lines contains a query represented as two integers llrr (1lrn1≤l≤r≤n).

Output

Print qq lines — the answers for the queries.

Examples
input
Copy
3
8 4 1
2
2 3
1 2
output
Copy
5
12
input
Copy
6
1 2 4 8 16 32
4
1 6
2 5
3 4
1 2
output
Copy
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][3,6], for second query — [2,5][2,5], for third — [3,4][3,4], for fourth — [1,2][1,2]

扫描二维码关注公众号,回复: 1069005 查看本文章


这是一道dp题,使用两个数组,一个数组为f数组,一个数组为ans数组,f数组枚举出所有情况,ans通过动态转移方程来求出结果。

动态转移方程为:ans[l][r]=max(f[l][r],max(ans[l][r-1],ans[l+1][r]));

本题代码如下:

#include<bits/stdc++.h>

using namespace std;

const int maxn=5e3+10;

typedef long long LL;

LL ans[maxn][maxn],f[maxn][maxn];

int main()
{
	LL n;
	cin>>n;
	for(int i=1;i<=n;i++){
		cin>>f[i][i];
		ans[i][i]=f[i][i];
	}	
	cout<<endl;
	for(int len=2;len<=n;len++){
		for(int l=1,r;(r=l+len-1)<=n;l++){
			f[l][r]=f[l][r-1]^f[l+1][r];
			ans[l][r]=max(f[l][r],max(ans[l][r-1],ans[l+1][r]));
		}
	}
	// for(int i=1;i<=n;i++){
	// 	for(int j=1;j<=n;j++){
	// 		printf("%5d",f[i][j]);
	// 	}
	// 	cout<<endl;
	// }
	// cout<<endl;
	// for(int i=1;i<=n;i++){
	// 	for(int j=1;j<=n;j++){
	// 		printf("%5d",ans[i][j]);
	// 	}
	// 	cout<<endl;
	// }
	LL q,l,r;
	cin>>q;
	while(q--){
		cin>>l>>r;
		cout<<ans[l][r]<<endl;
	}
	return 0;
}

猜你喜欢

转载自blog.csdn.net/zhouzi2018/article/details/80342280