E - M's Solution Editorial /

Time Limit: 3 sec / Memory Limit: 1024 MB

配点: 500

問題文

新 AtCoder 市は以下のように、無限に広がる碁盤の目のような構造になっています。

  • 新 AtCoder 市の中心には時計台があり、この座標を (0, 0) とする。
  • 時計台を通る東西方向に一直線の道路があり、これを「東西大通り」とする。これは 2 次元座標平面では x 軸に相当する。
  • そのほかにも、東西大通りに平行な道路が、距離 1 ずつ間隔をあけて無限本存在する。これらは、直線 y = (0 \ 以外の整数) に相当する。
  • 時計台を通る南北方向に一直線の道路があり、これを「南北大通り」とする。これは 2 次元座標平面では y 軸に相当する。
  • そのほかにも、南北大通りに平行な道路が、距離 1 ずつ間隔をあけて無限本存在する。これらは、直線 x = (0 \ 以外の整数) に相当する。

新 AtCoder 市には N 個の集落があります。i 個目の集落は、座標 (X_i, Y_i) の交差点上にあり、人口は P_i です。各市民は、これらの集落のうちいずれかひとつに住んでいます。

現時点で、鉄道路線は東西大通りに沿って無限に延びるものと、南北大通りに沿って無限に延びるものの 2 本しかありません。
市長の M 君は、これでは通勤に不便だと考えたので、新たに K 本の通りを選んで、それぞれに沿って無限に延びる鉄道路線を建設することにしました。

ここで、新 AtCoder 市の各市民の「歩行距離」を、住んでいる集落から最も近い鉄道路線までの距離とします。
このとき、全ての市民の歩行距離の合計 S が最も小さくなるように鉄道路線を建設したいです。

さて、K = 0, 1, 2, \dots, N のそれぞれについて、鉄道路線建設後の S の最小値はいくつでしょうか?

制約

  • 1 \leq N \leq 15
  • -10 \ 000 \leq X_i \leq 10 \ 000
  • -10 \ 000 \leq Y_i \leq 10 \ 000
  • 1 \leq P_i \leq 1 \ 000 \ 000
  • N 個の集落の場所 (X_i, Y_i) はすべて異なる
  • 入力はすべて整数

入力

入力は以下の形式で標準入力から与えられます。

N
X_1 Y_1 P_1
X_2 Y_2 P_2
 :  :  :
X_N Y_N P_N

出力

答えを N+1 行に出力してください。
i 行目 (i = 1, \ldots, N+1) には、K = i - 1 の場合の鉄道路線建設後の S の最小値を整数として出力してください。


入力例 1

3
1 2 300
3 3 600
1 4 800

出力例 1

2900
900
0
0

K = 0 の場合、集落 1, 2, 3 の住民は、鉄道路線にたどり着くためには、それぞれ距離 1, 3, 1 歩く必要があります。
したがって、全ての市民の歩行距離の合計 S1 \times 300 + 3 \times 600 + 1 \times 800 = 2900 となります。

K = 1 の場合、東西大通りから距離 4 だけ北の道路に鉄道路線を建設すると、集落 1, 2, 3 の住民の歩行距離は 1, 1, 0 になります。
すると、S = 1 \times 300 + 1 \times 600 + 0 \times 800 = 900 となります。
他にも多くの候補から建設場所を選べますが、そのうちどれも S900 より小さくすることはできません。

K = 2 の場合、南北大通りから距離 1, 3 だけ東の道路に鉄道路線を建設すると、新 AtCoder 市のすべての住民が歩行距離 0 で鉄道路線にたどり着くことができるので、S = 0 となります。また、K = 3 の場合も、S = 0 とすることができます。

K = 0, 1, 2 の場合の最適な鉄道路線の建設方法を下図に示します。
青く塗られた道路が鉄道路線を敷設する道路を表します。


入力例 2

5
3 5 400
5 3 700
5 5 1000
5 7 700
7 5 400

出力例 2

13800
1600
0
0
0
0

K = 1, 2 の場合の最適な鉄道路線の建設方法を下図に示します。


入力例 3

6
2 5 1000
5 2 1100
5 5 1700
-2 -5 900
-5 -2 600
-5 -5 2200

出力例 3

26700
13900
3200
1200
0
0
0

K = 3 の場合の最適な鉄道路線の建設方法を下図に示します。


入力例 4

8
2 2 286017
3 1 262355
2 -2 213815
1 -3 224435
-2 -2 136860
-3 -1 239338
-2 2 217647
-1 3 141903

出力例 4

2576709
1569381
868031
605676
366338
141903
0
0
0

K = 4 の場合の最適な鉄道路線の建設方法を下図に示します。

Score: 500 points

Problem Statement

New AtCoder City has an infinite grid of streets, as follows:

  • At the center of the city stands a clock tower. Let (0, 0) be the coordinates of this point.
  • A straight street, which we will call East-West Main Street, runs east-west and passes the clock tower. It corresponds to the x-axis in the two-dimensional coordinate plane.
  • There are also other infinitely many streets parallel to East-West Main Street, with a distance of 1 between them. They correspond to the lines \ldots, y = -2, y = -1, y = 1, y = 2, \ldots in the two-dimensional coordinate plane.
  • A straight street, which we will call North-South Main Street, runs north-south and passes the clock tower. It corresponds to the y-axis in the two-dimensional coordinate plane.
  • There are also other infinitely many streets parallel to North-South Main Street, with a distance of 1 between them. They correspond to the lines \ldots, x = -2, x = -1, x = 1, x = 2, \ldots in the two-dimensional coordinate plane.

There are N residential areas in New AtCoder City. The i-th area is located at the intersection with the coordinates (X_i, Y_i) and has a population of P_i. Each citizen in the city lives in one of these areas.

The city currently has only two railroads, stretching infinitely, one along East-West Main Street and the other along North-South Main Street.
M-kun, the mayor, thinks that they are not enough for the commuters, so he decides to choose K streets and build a railroad stretching infinitely along each of those streets.

Let the walking distance of each citizen be the distance from his/her residential area to the nearest railroad.
M-kun wants to build railroads so that the sum of the walking distances of all citizens, S, is minimized.

For each K = 0, 1, 2, \dots, N, what is the minimum possible value of S after building railroads?

Constraints

  • 1 \leq N \leq 15
  • -10 \ 000 \leq X_i \leq 10 \ 000
  • -10 \ 000 \leq Y_i \leq 10 \ 000
  • 1 \leq P_i \leq 1 \ 000 \ 000
  • The locations of the N residential areas, (X_i, Y_i), are all distinct.
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

N
X_1 Y_1 P_1
X_2 Y_2 P_2
 :  :  :
X_N Y_N P_N

Output

Print the answer in N+1 lines.
The i-th line (i = 1, \ldots, N+1) should contain the minimum possible value of S after building railroads for the case K = i-1.


Sample Input 1

3
1 2 300
3 3 600
1 4 800

Sample Output 1

2900
900
0
0

When K = 0, the residents of Area 1, 2, and 3 have to walk the distances of 1, 3, and 1, respectively, to reach a railroad.
Thus, the sum of the walking distances of all citizens, S, is 1 \times 300 + 3 \times 600 + 1 \times 800 = 2900.

When K = 1, if we build a railroad along the street corresponding to the line y = 4 in the coordinate plane, the walking distances of the citizens of Area 1, 2, and 3 become 1, 1, and 0, respectively.
Then, S = 1 \times 300 + 1 \times 600 + 0 \times 800 = 900.
We have many other options for where we build the railroad, but none of them makes S less than 900.

When K = 2, if we build a railroad along the street corresponding to the lines x = 1 and x = 3 in the coordinate plane, all citizens can reach a railroad with the walking distance of 0, so S = 0. We can also have S = 0 when K = 3.

The figure below shows the optimal way to build railroads for the cases K = 0, 1, 2.
The street painted blue represents the roads along which we build railroads.


Sample Input 2

5
3 5 400
5 3 700
5 5 1000
5 7 700
7 5 400

Sample Output 2

13800
1600
0
0
0
0

The figure below shows the optimal way to build railroads for the cases K = 1, 2.


Sample Input 3

6
2 5 1000
5 2 1100
5 5 1700
-2 -5 900
-5 -2 600
-5 -5 2200

Sample Output 3

26700
13900
3200
1200
0
0
0

The figure below shows the optimal way to build railroads for the case K = 3.


Sample Input 4

8
2 2 286017
3 1 262355
2 -2 213815
1 -3 224435
-2 -2 136860
-3 -1 239338
-2 2 217647
-1 3 141903

Sample Output 4

2576709
1569381
868031
605676
366338
141903
0
0
0

The figure below shows the optimal way to build railroads for the case K = 4.