A13513 | Maximum Subsequence Value
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Ridhiman challenged Ashish to find the maximum valued subsequence of an array $a$ of size $n$ consisting of positive integers.
The value of a non-empty subsequence of $k$ elements of $a$ is defined as $\sum 2^i$ over all integers $i \ge 0$ such that at least $\max(1, k - 2)$ elements of the subsequence have the $i$ -th bit set in their binary representation (value $x$ has the $i$ -th bit set in its binary representation if $\lfloor \frac{x}{2^i} \rfloor \mod 2$ is equal to $1$ ).
Recall that $b$ is a subsequence of $a$ , if $b$ can be obtained by deleting some(possibly zero) elements from $a$ .
Help Ashish find the maximum value he can get by choosing some subsequence of $a$ .
The value of a non-empty subsequence of $k$ elements of $a$ is defined as $\sum 2^i$ over all integers $i \ge 0$ such that at least $\max(1, k - 2)$ elements of the subsequence have the $i$ -th bit set in their binary representation (value $x$ has the $i$ -th bit set in its binary representation if $\lfloor \frac{x}{2^i} \rfloor \mod 2$ is equal to $1$ ).
Recall that $b$ is a subsequence of $a$ , if $b$ can be obtained by deleting some(possibly zero) elements from $a$ .
Help Ashish find the maximum value he can get by choosing some subsequence of $a$ .
输入格式
The first line of the input consists of a single integer $n$ $(1 \le n \le 500)$ — the size of $a$ .
The next line consists of $n$ space-separated integers — the elements of the array $(1 \le a_i \le 10^{18})$ .
The next line consists of $n$ space-separated integers — the elements of the array $(1 \le a_i \le 10^{18})$ .
输出格式
Print a single integer — the maximum value Ashish can get by choosing some subsequence of $a$ .
输入输出样例
输入 #1
3 2 1 3
输出 #1
3
输入 #2
3 3 1 4
输出 #2
7
输入 #3
1 1
输出 #3
1
输入 #4
4 7 7 1 1
输出 #4
7
For the first test case, Ashish can pick the subsequence $\{{2, 3}\}$ of size $2$ . The binary representation of $2$ is 10 and that of $3$ is 11. Since $\max(k - 2, 1)$ is equal to $1$ , the value of the subsequence is $2^0 + 2^1$ (both $2$ and $3$ have $1$ -st bit set in their binary representation and $3$ has $0$ -th bit set in its binary representation). Note that he could also pick the subsequence $\{{3\}}$ or $\{{2, 1, 3\}}$ .
For the second test case, Ashish can pick the subsequence $\{{3, 4\}}$ with value $7$ .
For the third test case, Ashish can pick the subsequence $\{{1\}}$ with value $1$ .
For the fourth test case, Ashish can pick the subsequence $\{{7, 7\}}$ with value $7$ .
For the second test case, Ashish can pick the subsequence $\{{3, 4\}}$ with value $7$ .
For the third test case, Ashish can pick the subsequence $\{{1\}}$ with value $1$ .
For the fourth test case, Ashish can pick the subsequence $\{{7, 7\}}$ with value $7$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted