B. 250 Thousand Tons of TNT

time limit per test

2 seconds

memory limit per test

256 megabytes

Alex is participating in the filming of another video of BrMeast, and BrMeast asked Alex to prepare 250 thousand tons of TNT, but Alex didn't hear him well, so he prepared n boxes and arranged them in a row waiting for trucks. The i-th box from the left weighs ai tons.

All trucks that Alex is going to use hold the same number of boxes, denoted by k. Loading happens the following way:

  • The first k boxes goes to the first truck,
  • The second k boxes goes to the second truck,
  • The last k boxes goes to the nk-th truck.

Upon loading is completed, each truck must have exactly k boxes. In other words, if at some point it is not possible to load exactly k boxes into the truck, then the loading option with that k is not possible.

Alex hates justice, so he wants the maximum absolute difference between the total weights of two trucks to be as great as possible. If there is only one truck, this value is 0.

Alex has quite a lot of connections, so for every 1≤k≤n, he can find a company such that each of its trucks can hold exactly k boxes. Print the maximum absolute difference between the total weights of any two trucks.

Input

The first line contains one integer t (1≤t≤104) --- the number of test cases.

The first line of each test case contains one integer n (1≤n≤150000) --- the number of boxes.

The second line contains n integers a1,a2,...,an (1≤ai≤109) --- the weights of the boxes.

It is guaranteed that the sum of n for all test cases does not exceed 150000.

Output

For each test case, print a single integer --- the answer to the problem.

Example

Input

Copy

复制代码

5

2

1 2

6

10 2 3 6 1 3

4

1000000000 1000000000 1000000000 1000000000

15

60978 82265 78961 56708 39846 31071 4913 4769 29092 91348 64119 72421 98405 222 14294

8

19957 69913 37531 96991 57838 21008 14207 19198

Output

Copy

复制代码
1
9
0
189114
112141

Note

In the first case, we should pick two trucks, so the first one will have only the first box, and the second one will have only the second box.

In the second case, we should pick six trucks, so the maximum will be 10, the minimum will be 1, and the answer is 10−1=9.

In the third case, for any possible k, the trucks will have the same total weight of boxes, so the answer is 0.

解题说明:此题是一道模拟题,其实就是从数列中找出最大值和最小值然后求差,注意这里最大值和最小值不一定是一个数字,最多可以由连续K个数字组成。循环遍历找出最大值和最小值的最大差值即可。

cpp 复制代码
#include<stdio.h>
int a[150010];
int main()
{
	int t;
	scanf("%d", &t);
	for (int i = 0; i < t; i++)
	{
		int n;
		scanf("%d", &n);
		for (int j = 0; j < n; j++)
		{
			scanf("%d", &a[j]);
		}
		long long high = 0;
		for (int j = 1; j < n; j++)
		{
			long long sub = 0;
			if (n % j == 0)
			{
				long long max = 0;
				long long min = 1e18;
				for (int k = 0; k < n / j; k++)
				{
					long long temp = 0;
					for (int z = 0; z < j; z++)
					{
						temp += a[k * j + z];
					}
					if (temp > max)
					{
						max = temp;
					}
					if (temp < min)
					{
						min = temp;
					}
				}
				sub = max - min;
				if (sub > high)
				{
					high = sub;
				}
			}
		}
		printf("%lld\n", high);
	}
	return 0;
}
相关推荐
手写码匠15 分钟前
从零实现 Prompt 工程引擎:结构化提示、自动优化与多轮自省体系
人工智能·深度学习·算法·aigc
无限码力38 分钟前
阿里算法岗 0530笔试真题 - 多约束条件下的元素匹配统计
算法·阿里笔试真题·阿里机试真题·阿里算法岗笔试
lqqjuly1 小时前
MLA — 多头潜在注意力深度解析
深度学习·神经网络·算法
吴可可1231 小时前
SolidWorks草图转三维DWG技巧
算法
redaijufeng2 小时前
C++雾中风景7:闭包
c++·算法·风景
小欣加油2 小时前
leetcode287寻找重复数
数据结构·c++·算法·leetcode
尽兴-3 小时前
2.1 向量基础:Embedding、余弦相似度、欧氏距离、向量检索
算法·embedding·欧氏距离·向量检索·余弦相似度
Black蜡笔小新3 小时前
自动化AI算法训练服务器DLTM训推一体工作站赋能多行业智能化升级
人工智能·算法·自动化
怪兽学LLM3 小时前
LeetCode 438 找到字符串中所有字母异位词(Python 固定滑动窗口+字符计数解法)
python·算法·leetcode
满怀冰雪3 小时前
第04篇-双指针算法-从有序数组到回文判断的高频解法
java·算法