Codeforces Round #483 (Div. 2) D. XOR-pyramid 连续子区间异或最大和

D. XOR-pyramid
time limit per test
2 seconds
memory limit per test
512 megabytes
input
standard input
output
standard output

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].

BUG反馈门

/**
题意:求解区间连续子序列的异或和最大值

dp[l][r]:区间异或和结果
预处理:输入为dp[l][l];
dp[l][r]=dp[l][r-1]^dp[l+1][r];
因此可以引用区间dp的思想,以长度进行枚举
不断更新ans[l][r](区间异或最大值);
那么我们只需要找到影响ans[l][r]的因素
类似的 dp[l+1][r]^dp[l][r-]得到区间异或和dp[l][r]
那么我们可以得到影响ans[l][r]的因素存在三个
ans[l][r-1],ans[l+1][r],dp[l][r];
其实上述过程还可以通过杨辉三角找规律进行实现;

由于题目给的空间是512mb 因此在这里二维(5e3)是不会MLE的;
总的来说  暴力预处理o(n^2) o(1)查询

*/

#include<bits/stdc++.h>
#define ll long long
using namespace std;

const int maxn=5e3+7;
int dp[maxn][maxn],ans[maxn][maxn];

int main (){
	ios_base::sync_with_stdio(false);
	ll n,q,l,r;cin>>n;
	for(int i=1;i<=n;i++) cin>>dp[i][i],ans[i][i]=dp[i][i];
	for(int len=2;len<=n;len++){
		for(l=1,r;(r=l+len-1)<=n;l++){
			dp[l][r]=dp[l][r-1]^dp[l+1][r];
			ans[l][r]=max(dp[l][r],max(ans[l][r-1],ans[l+1][r]));
		}
	}
	cin>>q;
	while(q--){
		cin>>l>>r;
		cout<<ans[l][r]<<endl;
	}
	return 0;
}

  • 1
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值