Processing math: 100%

USACO 2023 December Contest, Gold

Problem 3. Haybale Distribution


Contest has ended.

Log in to allow submissions in analysis mode


Farmer John is distributing haybales across the farm!

Farmer John's farm has N (1N2105) barns, located at integer points x1,,xN (0xi106) on the number line. Farmer John's plan is to first have N shipments of haybales delivered to some integer point y (0y106) and then distribute one shipment to each barn.

Unfortunately, Farmer John's distribution service is very wasteful. In particular, for some ai and bi (1ai,bi106), ai haybales are wasted per unit of distance left each shipment is transported, and bi haybales are wasted per unit of distance right each shipment is transported. Formally, for a shipment being transported from point y to a barn at point x, the number of haybales wasted is given by

{ai(yx)if yxbi(xy)if x>y.

Given Q (1Q2105) independent queries each consisting of possible values of (ai,bi), please help Farmer John determine the fewest amount of haybales that will be wasted if he chooses y optimally.

INPUT FORMAT (input arrives from the terminal / stdin):

The first line contains N.

The next line contains x1xN.

The next line contains Q.

The next Q lines each contain two integers ai and bi.

OUTPUT FORMAT (print output to the terminal / stdout):

Output Q lines, the ith line containing the answer for the ith query.

SAMPLE INPUT:

5
1 4 2 3 10
4
1 1
2 1
1 2
1 4

SAMPLE OUTPUT:

11
13
18
30

For example, to answer the second query, it is optimal to select y=2. Then the number of wasted haybales is equal to 2(21)+2(22)+1(32)+1(42)+1(102)=1+0+1+2+8=13.

SCORING:

  • Input 2: N,Q10
  • Input 3: N,Q500
  • Inputs 4-6: N,Q5000
  • Inputs 7-16: No additional constraints.

Problem credits: Benjamin Qi

Contest has ended. No further submissions allowed.