#ABC129B. Balance
Balance
题目描述
We have weights indexed to . The mass of the weight indexed is .
We will divide these weights into two groups: the weights with indices not greater than , and those with indices greater than , for some integer . Let be the sum of the masses of the weights in the former group, and be the sum of the masses of the weights in the latter group.
Consider all possible such divisions and find the minimum possible absolute difference of and .
我们有 个砝码,索引号为 至 。索引为 的砝码的质量为 。
我们将把这些权重分为两组:索引不大于 的权重和索引大于 的权重,其整数为 。设 为前一组砝码的质量总和, 为后一组砝码的质量总和。
考虑所有可能的分割,求出 和 的最小绝对差。
输入格式
输入内容按以下格式标准输入:
输出格式
打印 和 的最小绝对差值。
样例 #1
样例输入 #1
3
1 2 3
样例输出 #1
0
样例 #2
样例输入 #2
4
1 3 1 1
样例输出 #2
2
样例 #3
样例输入 #3
8
27 23 76 2 3 5 62 52
样例输出 #3
2
说明
数据规模与约定
- 所有输入值均为整数。
样例 解释
如果 、 和 ,绝对差值为 。
样例 解释
如果 、 和 ,绝对差为 。我们不可能有更小的绝对差值。