传统题 1000ms 256MiB

D - Equal Cut

该比赛已结束,您无法在比赛模式下递交该题目。您可以点击“在题库中打开”以普通模式查看和递交本题。

D - Equal Cut

Score : $600$ points

Problem Statement

Snuke has an integer sequence $A$ of length $N$.

He will make three cuts in $A$ and divide it into four (non-empty) contiguous subsequences $B, C, D$ and $E$. The positions of the cuts can be freely chosen.

Let $P,Q,R,S$ be the sums of the elements in $B,C,D,E$, respectively. Snuke is happier when the absolute difference of the maximum and the minimum among $P,Q,R,S$ is smaller. Find the minimum possible absolute difference of the maximum and the minimum among $P,Q,R,S$.

Constraints

  • $4 \leq N \leq 2 \times 10^5$
  • $1 \leq A_i \leq 10^9$
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN

A1A_1 A2A_2 ...... ANA_N

Output

Find the minimum possible absolute difference of the maximum and the minimum among $P,Q,R,S$.


5
3 2 4 1 2
2

If we divide $A$ as $B,C,D,E=(3),(2),(4),(1,2)$, then $P=3,Q=2,R=4,S=1+2=3$. Here, the maximum and the minimum among $P,Q,R,S$ are $4$ and $2$, with the absolute difference of $2$. We cannot make the absolute difference of the maximum and the minimum less than $2$, so the answer is $2$.


10
10 71 84 33 6 47 23 25 52 64
36

7
1 2 3 1000000000 4 5 6
999999994

2024寒假入门组刷题营(五)

未参加
状态
已结束
规则
ACM/ICPC
题目
8
开始于
2024-2-2 13:30
结束于
2024-2-2 15:30
持续时间
2 小时
主持人
参赛人数
10