305314: CF1006C. Three Parts of the Array
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Three Parts of the Array
题意翻译
**问题描述** 给定一个长度为n的整数序列$\{d_1,d_2,\dots,d_n\}$。 你的任务是将序列分成3部分,每部分可以是空的,并保证每一个数都属于这三个部分的某一个,每一部分都必须是一些连续的整数。 设三部分的和分别为$sum_1$,$sum_2$,$sum_3$。 那么你需要在所有划分方案中找到一个方案使得$sum_1=sum_3$且$sum_1$尽可能的大。 确切的说,如果第一部分包含$a$个整数,第二部分包含$b$个整数而第三部分包含$c$个,那么应该有 $$sum_1 = \sum\limits_{1 \le i \le a}d_i,$$ $$sum_2 = \sum\limits_{a + 1 \le i \le a + b}d_i,$$ $$sum_3 = \sum\limits_{a + b + 1 \le i \le a + b + c}d_i.$$ 并且对于空的那部分,它的和为0。 你需要在所有划分方案中找到一个方案使得$sum_1=sum_3$且$sum_1$尽可能的大。 **输入格式** 第一行一个整数$n(1 \le n \le 2 \cdot 10^5)$ 第二行包含n个整数$d_1, d_2, \dots, d_n(1 \le d_i \le 10^9)$ **输出格式** 一行一个整数,表示$sum_1$的最大值 显然,至少有一种划分方案是合法的$(a=c=0,b=n)$题目描述
You are given an array $ d_1, d_2, \dots, d_n $ consisting of $ n $ integer numbers. Your task is to split this array into three parts (some of which may be empty) in such a way that each element of the array belongs to exactly one of the three parts, and each of the parts forms a consecutive contiguous subsegment (possibly, empty) of the original array. Let the sum of elements of the first part be $ sum_1 $ , the sum of elements of the second part be $ sum_2 $ and the sum of elements of the third part be $ sum_3 $ . Among all possible ways to split the array you have to choose a way such that $ sum_1 = sum_3 $ and $ sum_1 $ is maximum possible. More formally, if the first part of the array contains $ a $ elements, the second part of the array contains $ b $ elements and the third part contains $ c $ elements, then: $ $sum_1 = \sum\limits_{1 \le i \le a}d_i, $ $ $ $ sum_2 = \sum\limits_{a + 1 \le i \le a + b}d_i, $ $ $ $ sum_3 = \sum\limits_{a + b + 1 \le i \le a + b + c}d_i. $ $ </p><p>The sum of an empty array is $ 0 $ .</p><p>Your task is to find a way to split the array such that $ sum\_1 = sum\_3 $ and $ sum\_1$ is maximum possible.输入输出格式
输入格式
The first line of the input contains one integer $ n $ ( $ 1 \le n \le 2 \cdot 10^5 $ ) — the number of elements in the array $ d $ . The second line of the input contains $ n $ integers $ d_1, d_2, \dots, d_n $ ( $ 1 \le d_i \le 10^9 $ ) — the elements of the array $ d $ .
输出格式
Print a single integer — the maximum possible value of $ sum_1 $ , considering that the condition $ sum_1 = sum_3 $ must be met. Obviously, at least one valid way to split the array exists (use $ a=c=0 $ and $ b=n $ ).
输入输出样例
输入样例 #1
5
1 3 1 1 4
输出样例 #1
5
输入样例 #2
5
1 3 2 1 4
输出样例 #2
4
输入样例 #3
3
4 1 2
输出样例 #3
0