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;
}
相关推荐
_深海凉_3 分钟前
LeetCode热题100-杨辉三角
算法·leetcode·职场和发展
小O的算法实验室13 分钟前
2025年SEVC,面向进化计算的学习注入式优化,深度解析+性能实测
算法·论文复现·智能算法·智能算法改进
啊我不会诶22 分钟前
2024北京市赛补题
c++·算法
shehuiyuelaiyuehao23 分钟前
算法13,滑动窗口,水果成篮
算法·哈希算法·散列表
智慧物业老杨23 分钟前
物业数智化转型实战:从单一服务到综合解决方案的技术落地路径
人工智能·算法·ai
夏末蝉未鸣0126 分钟前
Sort-Merge Join【排序连接算法】详解(python代码实现,以FULL JOIN为例)
数据结构·算法
tjl521314_2134 分钟前
01C++ 分离编译与多文件编程
前端·c++·算法
_日拱一卒35 分钟前
LeetCode:23合并K个升序链表
java·数据结构·算法·leetcode·链表·职场和发展
哆啦刘小洋38 分钟前
【LeetCode每日一题】:2033(贪心+快速排序魔改)
算法·leetcode
WolfGang00732140 分钟前
代码随想录算法训练营 Day48 | 图论 part06
算法·图论