欢迎来到起遇信息学
起遇信息学正处于上线筹建阶段,以下功能已全部开放免费体验: ✅ 完整题库浏览与代码提交评测(C / C++ / Python / Java 等) ✅ 入门到进阶的系列课程试读、作业与考试 ✅ AI 提示、AI 作业分析等智能助教功能 ✅ 赛事模拟与个人能力报告 ✅ 邮箱注册开放 ⏳ 付费课程订阅与微信/支付宝支付通道 ⏳ 手机号登录,微信扫码登录、微信公众号绑定 使用中如遇任何问题,欢迎通过页面底部 **"联系我们"** 与我们沟通。
CF1469B.Red and Blue
Red and Blue
Monocarp had a sequence consisting of integers . He painted the elements into two colors, red and blue; elements were painted red, all other elements were painted blue.
After painting the elements, he has written two sequences and . The sequence consisted of all red elements of in the order they appeared in ; similarly, the sequence consisted of all blue elements of in the order they appeared in as well.
Unfortunately, the original sequence was lost, and Monocarp only has the sequences and . He wants to restore the original sequence. In case there are multiple ways to restore it, he wants to choose a way to restore that maximizes the value of
$$f(a) = \max(0, a_1, (a_1 + a_2), (a_1 + a_2 + a_3), \dots, (a_1 + a_2 + a_3 + \dots + a_{n + m}))$$</p><p>Help Monocarp to calculate the maximum possible value of$f(a)$. ## Input The first line contains one integer $t$ ($1 \le t \le 1000$) — the number of test cases. Then the test cases follow. Each test case consists of four lines. The first line of each test case contains one integer $n$ ($1 \le n \le 100$). The second line contains $n$ integers $r_1, r_2, \dots, r_n$ ($-100 \le r_i \le 100$). The third line contains one integer $m$ ($1 \le m \le 100$). The fourth line contains $m$ integers $b_1, b_2, \dots, b_m$ ($-100 \le b_i \le 100$). ## Output For each test case, print one integer — the maximum possible value of $f(a)$. ## Note In the explanations for the sample test cases, red elements are marked as bold. In the first test case, one of the possible sequences $a$ is $[\mathbf{6}, 2, \mathbf{-5}, 3, \mathbf{7}, \mathbf{-3}, -4]$. In the second test case, one of the possible sequences $a$ is $[10, \mathbf{1}, -3, \mathbf{1}, 2, 2]$. In the third test case, one of the possible sequences $a$ is $[\mathbf{-1}, -1, -2, -3, \mathbf{-2}, -4, -5, \mathbf{-3}, \mathbf{-4}, \mathbf{-5}]$. In the fourth test case, one of the possible sequences $a$ is $[0, \mathbf{0}]$. ## Samples ```input1 4 4 6 -5 7 -3 3 2 3 -4 2 1 1 4 10 -3 2 2 5 -1 -2 -3 -4 -5 5 -1 -2 -3 -4 -5 1 0 1 0 ``` ```output1 13 13 0 0 ```$$在线编程 IDE
建议全屏模式获得最佳体验
| 进入全屏编程 | Alt+E |
| 递交评测 | Ctrl+Enter |
| 注释/取消注释 | Ctrl+/ |
| 缩放字体 | Ctrl+滚轮 |