B. Cobb

题目:https://codeforces.com/contest/1554/problem/B

You are given n integers a1,a2,…,an and an integer k. Find the maximum value of i⋅j−k⋅(ai|aj) over all pairs (i,j) of integers with 1≤i<j≤n. Here, | is the bitwise OR operator.

Input
The first line contains a single integer t (1≤t≤10000) — the number of test cases.

The first line of each test case contains two integers n (2≤n≤105) and k (1≤k≤min(n,100)).

The second line of each test case contains n integers a1,a2,…,an (0≤ai≤n).

It is guaranteed that the sum of n over all test cases doesn’t exceed 3⋅105.

Output
For each test case, print a single integer — the maximum possible value of i⋅j−k⋅(ai|aj).

Example
input
4
3 3
1 1 3
2 2
1 2
4 3
0 1 2 3
6 6
3 2 0 0 5 6
output
-1
-4
3
12
Note
Let f(i,j)=i⋅j−k⋅(ai|aj).

In the first test case,

f(1,2)=1⋅2−k⋅(a1|a2)=2−3⋅(1|1)=−1.
f(1,3)=1⋅3−k⋅(a1|a3)=3−3⋅(1|3)=−6.
f(2,3)=2⋅3−k⋅(a2|a3)=6−3⋅(1|3)=−3.
So the maximum is f(1,2)=−1.

In the fourth test case, the maximum is f(3,4)=12.

思路证明:
Let f(i,j)=i⋅j−k⋅(ai|aj) for i<j.

Do we really need to check all pairs?

The value of k is small, which is suspicious. There must be something revolving around it. What can that be?

In the equation, i⋅j can be O(n2), but k⋅(ai|aj) is O(n⋅100). That means the value of f(i,j) must be larger for bigger i,j. Can you deduce something from this?

What is the smallest i which can contribute to the result(f(i,j):i<j is the maximum)? Pause and think. Hint: try to maximize f(i,j) and minimize the heaviest pair, that is, f(n−1,n), and compare them.

Let’s find it. What is the maximum possible value of a pair containing i?. It’s when i pairs with n and ai=an=0. So, f(i,n)=i⋅n−k⋅0=i⋅n.

What is the minimum possible value of the heaviest pair f(n−1,n)? It’s when an−1|an is maximum. And, since 0≤ai≤n, the maximum possible of value any ai|aj is ≤2n. So f(n−1,n)=(n−1)⋅n−k⋅2n=n2−2kn−n.

For i to contribute to the result, f(i,n) must be >f(n−1,n). And, when f(i,n)>f(n−1,n), then i⋅n>n2−2kn−n, or i>n−2k−1. So any of f(i,j) such that i<n−2k won’t generate a value greater than f(n−1,n)!. This indicates us that we just have to check the pairs f(i,j) such that i,j≥n−2k. And, there are only O(k2) such pairs, so we can brute-force.

We have also allowed O(n⋅k) solutions to pass i.e. brute-forcing over all pairs such that 1≤i≤n and n−2k≤j≤n.

Time Complexity: O(k2)

为什么看起来容易,做起来总是困难重重。。

AC代码:

#include <iostream>
#include <cstring>
#include <vector>
using namespace std;

int main(){
	
	ios_base::sync_with_stdio(false);
	int t;
	cin >> t;
	
	while(t--){
		
		int n,k;
		cin >> n >> k;
		
		vector<int> num(n+1);
		
		for(int i = 1;i<=n;i++) cin >> num[i];
		
		long long ans = -1e12;
		int l = max(1,n - 2 * k);
		
		for(int i = l;i<=n;i++)
			for(int j = i+1;j<=n;j++){
				
				ans = max(ans, 1LL * i * j - 1LL * k*(num[i]|num[j]));
			}
			
		cout << ans << endl;
	}
	
	return 0;
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值