[Codeforces Round #483 (Div. 1) -B] XOR-pyramid

122 篇文章 0 订阅
32 篇文章 0 订阅
洛谷传送门
Codeforces传送门

题目描述

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 f ( 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 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 .

输入输出格式

输入格式:

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

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

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

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

输出格式:

Print q q lines — the answers for the queries.

输入输出样例

输入样例#1:

3
8 4 1
2
2 3
1 2

输出样例#1:

5
12

输入样例#2:

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

输出样例#2:

60
30
12
3

说明

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

题目大意

给你一个序列, 一次操作可以将长为 n n 一段序列的相邻元素两两异或, 得到n1个值(顺序不变), 如此操作 n1 n − 1 次可以得到一个值。 现给出 q q 组询问, 每次询问在[l,r]范围内操作其中子序列可以得到最大值是多少。、

解题分析

首先很容易看出 [l,r] [ l , r ] 的序列每个元素异或的次数和 (rl+1il+1) ( r − l + 1 i − l + 1 ) 对应, 这样我们就有了一个 O(n3) O ( n 3 ) 优秀做法。

那么怎么优化? O(n3) O ( n 3 ) 的原因是我们没法直接转移, 必须每次暴力算。 那么我们可以发现, 设 dp[i][j] d p [ i ] [ j ] 表示 [i,j] [ i , j ] 的最终的值, 那么 dp[i][j]=dp[i+1][j]dp[i][j1] d p [ i ] [ j ] = d p [ i + 1 ] [ j ] ⊕ d p [ i ] [ j − 1 ] , 这样我们记忆化一下, 可以得到 O(n2) O ( n 2 ) 的做法。

代码如下:

#include <cstdio>
#include <cstring>
#include <cmath>
#include <algorithm>
#include <cctype>
#include <cmath>
#define R register
#define IN inline
#define W while
#define gc getchar()
#define MX 5050
template <class T>
IN void in(T &x)
{
    x = 0; R char c = gc;
    for (; !isdigit(c); c = gc);
    for (;  isdigit(c); c = gc)
    x = (x << 1) + (x << 3) + c - 48;
}
int n, q;
int dp[MX][MX], ans[MX][MX], val[MX];
int DP (R int lef, R int rig)
{
    if(lef == rig) return val[lef];
    if(~dp[lef][rig]) return dp[lef][rig];
    return dp[lef][rig] = DP(lef + 1, rig) ^ DP(lef, rig - 1);
}
int getans(R int lef, R int rig)
{
    if(lef == rig) return val[lef];
    if(~ans[lef][rig]) return ans[lef][rig];
    return ans[lef][rig] = std::max(std::max(getans(lef + 1, rig), getans(lef, rig - 1)), DP(lef, rig));
}
int main(void)
{
    std::memset(dp, -1, sizeof(dp)); std::memset(ans, -1, sizeof(ans));
    int a, b;
    in(n);
    for (R int i = 1; i <= n; ++i) in(val[i]);
    in(q);
    W(q--)
    {
        in(a), in(b);
        printf("%d\n", getans(a, b));
    }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值