[USACO 2007 Spe C]The Bovine Accordion and Banjo Orchestra
题号:NC25009
时间限制:C/C++/Rust/Pascal 1秒,其他语言2秒
空间限制:C/C++/Rust/Pascal 64 M,其他语言128 M
64bit IO Format: %lld

题目描述

The 2*N (3 <= N <= 1,000) cows have assembled the Bovine Accordion and Banjo Orchestra!  They possess various levels of skill on their respective instruments: accordionist i has an associated talent level Ai (0 <= Ai <= 1,000); banjoist j has an associated talent level Bj (0 <= Bj <= 1,000).
The combined `awesomeness' of a pairing between cows with talents Ai and Bj is directly proportional to the talents of each cow in the pair so a concert with those two cows will earn FJ precisely Ai * Bj dollars in "charitable donations".  FJ wishes to maximize the sum of all revenue obtained by his cows by pairing them up in the most profitable way.
Unfortunately, FJ's accordionists are a bit stuck up and stubborn. If accordionist i is paired with banjoist j, then accordionists i+1..N refuse to be paired with banjoists 1..j-1. This creates restrictions on which pairs FJ can form. FJ thus realizes that in order to maximize his profits, he may have to leave some cows unpaired.
To make matters worse, when one or more of the musicians is skipped, they will be greatly upset at their wasted talent and will engage in massive binge drinking to wash away their sorrows.
After all pairings are made, a list is constructed of the groups of each of the consecutive skipped musicians (of either instrument). Every group of one or more consecutive skipped cows will gather together to consume kegs of ice cold orange soda in an amount proportional to the square of the sum of their wasted talent.
Specifically, FJ has calculated that if the x-th to y-th accordionists are skipped, they will consume precisely (Ax + Ax+1 + Ax+2 + ... + Ay)^2 dollars worth of orange soda in the process of drinking themselves into oblivion. An identical relationship holds for the banjoists. FJ realizes that he'll end up getting stuck with the bill for his cows' drinking, and thus takes this into account when choosing which pairings to make.
Find the maximum amount of total profit that FJ can earn after the contributions are collected and the orange soda is paid for.

输入描述:

* Line 1: A single integer: N
* Lines 2..N+1: Line i+1 contains the single integer: Ai
* Lines N+2..2*N+1: Line i+N+1 contains the single integer: Bi

输出描述:

* Line 1: A single integer that represents the maximum amount of cash that FJ can earn.
示例1

输入

复制
3
1
1
5
5
1
1

输出

复制
17

说明

There are 6 cows: 3 accordionists and 3 banjoists. The accordionists  have talent levels (1, 1, 5), and the banjoists have talent levels (5, 1, 1).
FJ pairs accordionist 3 with banjoist 1 to get earn A_3 * B_1 = 5 * 5 = 25 in profit. He loses a total of (1 + 1)^2 + (1 + 1)^2 = 8 dollars due to the cost of soda for his remaining cows. Thus his final (net) profit is 25 - 8 = 17.