310926: CF1910E. Maximum Sum Subarrays
Description
You are given two integer arrays $a$ and $b$, both of length $n$.
You can perform the following operation any number of times (possibly zero): swap $a_i$ and $b_i$.
Let $f(c)$ be the maximum sum of a contiguous subarray of the array $c$ (including the empty subsegment, which sum is $0$).
Your task is to calculate the maximum possible value of $f(a) + f(b)$, using the aforementioned operation any number of times.
InputThe first line contains a single integer $t$ ($1 \le t \le 10^4$) — the number of test cases.
The first line of each test case contains a single integer $n$ ($1 \le n \le 2 \cdot 10^5$).
The second line contains $n$ integers $a_1, a_2, \dots, a_n$ ($-10^9 \le a_i \le 10^9$).
The third line contains $n$ integers $b_1, b_2, \dots, b_n$ ($-10^9 \le b_i \le 10^9$).
The sum of $n$ over all test case doesn't exceed $2 \cdot 10^5$.
OutputFor each test case, print a single integer — the maximum possible value of $f(a) + f(b)$, using the aforementioned operation any number of times.
ExampleInput3 3 2 -1 3 -4 0 1 6 4 2 -6 1 6 -4 -6 -2 -3 7 -3 2 2 -2 -5 0 -1Output
6 21 0
Output
这是一个求解最大子数组和的问题。给定两个长度为n的整数数组a和b。你可以执行以下操作任意次数(可能为零):交换a_i和b_i。定义f(c)为数组c的连续子数组(包括空子段,其和为0)的最大和。任务是计算使用上述操作任意次数后,f(a) + f(b)的最大可能值。
输入数据格式:
第一行包含一个整数t(1 ≤ t ≤ 10^4)——测试用例的数量。
每个测试用例的第一行包含一个整数n(1 ≤ n ≤ 2 × 10^5)。
第二行包含n个整数a_1, a_2, …, a_n(-10^9 ≤ a_i ≤ 10^9)。
第三行包含n个整数b_1, b_2, …, b_n(-10^9 ≤ b_i ≤ 10^9)。
所有测试用例的n之和不超过2 × 10^5。
输出数据格式:
对于每个测试用例,打印一个整数——使用上述操作任意次数后,f(a) + f(b)的最大可能值。题目大意: 这是一个求解最大子数组和的问题。给定两个长度为n的整数数组a和b。你可以执行以下操作任意次数(可能为零):交换a_i和b_i。定义f(c)为数组c的连续子数组(包括空子段,其和为0)的最大和。任务是计算使用上述操作任意次数后,f(a) + f(b)的最大可能值。 输入数据格式: 第一行包含一个整数t(1 ≤ t ≤ 10^4)——测试用例的数量。 每个测试用例的第一行包含一个整数n(1 ≤ n ≤ 2 × 10^5)。 第二行包含n个整数a_1, a_2, …, a_n(-10^9 ≤ a_i ≤ 10^9)。 第三行包含n个整数b_1, b_2, …, b_n(-10^9 ≤ b_i ≤ 10^9)。 所有测试用例的n之和不超过2 × 10^5。 输出数据格式: 对于每个测试用例,打印一个整数——使用上述操作任意次数后,f(a) + f(b)的最大可能值。