I - Internet Trouble

Languages: C, C++, Java, Pascal, Python, Tiger, JavaScript, Haskell, C#
Time & Memory limits: (details)

The government is planning to provide internet to people in remote areas, in this case small towns that developed on the side of a long and busy highway. There are $N$ towns located side by side along the highway, each taking up exactly one kilometer of highway. The towns are numbered consecutively along the highway from $1$ to $N$. To provide an internet connection, the government is going to place access-point stations with satellite links, which will provide wired connections for the towns.

The stations are to be placed in one or more different towns, being $B$ the cost to build each station. Since the government wants to provide extremely good service, each house will be connected directly to one of these stations. When connecting a house in town $i$, we must choose a station in town $j$ for connecting that house. The connection cost is then $|i-j| \times C$, where $C$ is the cost of a kilometer of cable. Notice that the intra-town cable cost is small enough to be ignored, so in particular houses in a town where a station is placed do not incur in any cabling cost when connected to that station.

Given $N$, $B$, $C$ and the number of houses in each town, write a program to determine the minimum total cost of providing an internet connection for every house in every town, including the cost of building the stations and laying the cabling for each house. Because the government hasn't decided yet on the final number of access-point stations to be built, you should calculate the minimum cost when there are $1$, $2$, ..., $N$ stations.

Input

The first line contains three integers $N$, $B$ and $C$ representing the number of towns, the cost of building one access-point station and the cost of one kilometer of cable, respectively ($1 \leq N \leq 6000$, $1 \leq B \leq 10^9$ and $1 \leq C \leq 100$). The second line contains $N$ integers $H_1, H_2, ..., H_N$, where $H_i$ represents the number of houses in the $i$-th town ($1 \leq H_i \leq 10^9$ for $i = 1, 2, ..., N$).

Output

Output a line with $N$ integers representing the minimum total cost of providing an internet connection for every house in every town when building $1, 2, ... , N$ access-point stations.

Sample test(s)

Input
5 6 1 1 2 3 4 5
Output
21 20 22 25 30
Input
6 8 1 9 10 3 2 7 6
Output
69 36 35 37 42 48