A11845 | XOR-pyramid
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
For an array $b$ of length $m$ we define the function $f$ as
$ f(b) = \begin{cases} b[1] & \quad \text{if } m = 1 \\ f(b[1] \oplus b[2],b[2] \oplus b[3],\dots,b[m-1] \oplus b[m]) & \quad \text{otherwise,} \end{cases} $ where $\oplus$ is [bitwise exclusive OR](https://en.wikipedia.org/wiki/Bitwise_operation#XOR).
For example, $f(1,2,4,8)=f(1\oplus2,2\oplus4,4\oplus8)=f(3,6,12)=f(3\oplus6,6\oplus12)=f(5,10)=f(5\oplus10)=f(15)=15$
You are given an array $a$ and a few queries. Each query is represented as two integers $l$ and $r$ . The answer is the maximum value of $f$ on all continuous subsegments of the array $a_l, a_{l+1}, \ldots, a_r$ .
$ f(b) = \begin{cases} b[1] & \quad \text{if } m = 1 \\ f(b[1] \oplus b[2],b[2] \oplus b[3],\dots,b[m-1] \oplus b[m]) & \quad \text{otherwise,} \end{cases} $ where $\oplus$ is [bitwise exclusive OR](https://en.wikipedia.org/wiki/Bitwise_operation#XOR).
For example, $f(1,2,4,8)=f(1\oplus2,2\oplus4,4\oplus8)=f(3,6,12)=f(3\oplus6,6\oplus12)=f(5,10)=f(5\oplus10)=f(15)=15$
You are given an array $a$ and a few queries. Each query is represented as two integers $l$ and $r$ . The answer is the maximum value of $f$ on all continuous subsegments of the array $a_l, a_{l+1}, \ldots, a_r$ .
输入格式
The first line contains a single integer $n$ ( $1 \le n \le 5000$ ) — the length of $a$ .
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $0 \le a_i \le 2^{30}-1$ ) — the elements of the array.
The third line contains a single integer $q$ ( $1 \le q \le 100\,000$ ) — the number of queries.
Each of the next $q$ lines contains a query represented as two integers $l$ , $r$ ( $1 \le l \le r \le n$ ).
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ( $0 \le a_i \le 2^{30}-1$ ) — the elements of the array.
The third line contains a single integer $q$ ( $1 \le q \le 100\,000$ ) — the number of queries.
Each of the next $q$ lines contains a query represented as two integers $l$ , $r$ ( $1 \le l \le r \le n$ ).
输出格式
Print $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]$ , for third — $[3,4]$ , for fourth — $[1,2]$ .
In second sample, optimal segment for first query are $[3,6]$ , for second query — $[2,5]$ , for third — $[3,4]$ , for fourth — $[1,2]$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted