The Bovine Accordion and Banjo Orchestra

Xem dạng PDF

Gửi bài giải

Điểm: 1,57 (OI)
Giới hạn thời gian: 1.0s
Giới hạn bộ nhớ: 512M
Input: stdin
Output: stdout

Nguồn bài:
USACO CHN 07
Dạng bài
Ngôn ngữ cho phép
C, C++, Go, Java, Kotlin, Pascal, PyPy, Python, Rust, Scratch

The ~2 \times n~ ~(3 \le N \le 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 ~A_{i}~ ~(0 \le A_{i} \le 1~, ~000)~; banjoist ~j~ has an associated talent level ~B_{j}~ ~(0 \le B_{j} \le 1~, ~000)~.

The combined ~A_i~ and ~B_{j}~ is directly proportional to the talents of each cow in the pair so a concert with those two cows will earn FJ precisely ~A_{i} \times B_{j}~ 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 ~(A_{x} + A_{x + 1} + A_{x + 2} + \dots + A_{y})^ 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.

Input

Input

  • Line ~1~: A single integer: ~N~
  • Lines ~2~ ...~N + 1~: Line ~i + 1~ contains the single integer: ~A_{i}~
  • Lines ~N + 2~ ...~2 \times N + 1~: Line ~i + N + 1~ contains the single integer: ~B_{i}~

Output

  • Line ~1~: A single integer that represents the maximum amount of cash that FJ can earn.

Sample Input

3
1
1
5
5
1
1

Sample Output

17

Note

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} \times B_{1} = 5 \times 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~.


Bình luận

Hãy đọc nội quy trước khi bình luận.


Không có bình luận tại thời điểm này.