E. Maximum Subsequence Value

该问题要求找到一个正整数数组的最大子序列值,该值由子序列中元素的二进制表示中设置的位的权重之和计算得出。输入包含数组的大小和元素,输出是可获得的最大值。示例解释了如何计算这个值。
摘要由CSDN通过智能技术生成

E. Maximum Subsequence Value time limit per test2 seconds memory limit
per test256 megabytes inputstandard input outputstandard output
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
∑2i over all integers i≥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
⌊x2i⌋mod2 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.

Input The first line of the input consists of a single integer n
(1≤n≤500) — the size of a.

The next line consists of n space-separated integers — the elements of
the array (1≤ai≤1018).

Output Print a single integer — the maximum value Ashish can get by
choosing some subsequence of a.

Examples inputCopy 3 2 1 3 outputCopy 3 inputCopy 3 3 1 4 outputCopy 7
inputCopy 1 1 outputCopy 1 inputCopy 4 7 7 1 1 outputCopy 7 Note 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 20+21 (both
2 and 3 have 1-st bit set in their bi

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值