#P51450. [JOISC 2021 Day1] Aerobatics

[JOISC 2021 Day1] Aerobatics

Cannot parse: undefinedms error parsing time

Description

Original problem at JOISC 2021 Day1 T1 Aerobatics.

Bitaro will participate in an aerobatics competition. In this competition, Bitaro will fly an airplane. The airplane will keep a certain altitude, and pass through the checkpoints. The area where the airplane will fly is considered as a coordinate plane. There are NN checkpoints, numbered from 11 to NN. The coordinate of the checkpoint ii (1iN)(1 \leq i \leq N) is (Xi, Yi)(X_i,~Y_i). During the competition, the airplane must pass through each checkpoint once. More precisely, the airplane must fly in the following way.

  1. First, Bitaro chooses the starting checkpoint, and the airplane will start flying from there.
  2. Repeat the following N1N − 1 times. Among the checkpoints which are not yet chosen, Bitaro chooses a checkpoint as the next checkpoint. Then the airplane will fly straight from the current checkpoint to the next checkpoint.
  3. When the airplane arrived at the last checkpoint, the flight is finished. Here, in the step 2, we consider the starting checkpoint as an already chosen checkpoint.

The airplane must fly straight from a checkpoint to the next checkpoint. It is forbidden to draw a curve or make a turn on the way.

The route of the airplane is a polygonal line. During the flight, the airplane will change its direction at most N2N−2 times. If the angle of the polygonal line at a checkpoint is small, the change of the direction of the airplane at that checkpoint is large, and there is a risk of failure of the flight.

Therefore, Bitaro wants to make the minimum angle of the polygonal line at the N2N − 2 checkpoints, except for the starting checkpoint and the last checkpoint, as large as possible.

Given the coordinates of the checkpoints, find an order of the checkpoints to pass so that the minimum angle of the polygonal line is as large as possible.

Input Format

The first line consists two integers NN and Z0Z_0, where Z0Z_0 is a parameter used by the grader.

In the following NN lines, there are two integers XiX_i and NiN_i each line.

Output Format

The output should consist of NN lines. The kk-th line (1kN)(1 \leq k \leq N) of the output should contain the integer Pk(1PkN)P_k (1 \leq P_k \leq N), which is the kk-th checkpoint in the route of the airplane. Here, the starting checkpoint is the first checkpoint P1P_1.

Submission

Submit output data output output_01.txt, output_02.txt, ..., output_06.txt for each of the input files input_01.txt, input_02.txt, ..., input_06.txt.

Constraints

For all test data, it is guaranteed that,

  • 3N10003 \le N \le 1\,000

  • Xi2+Yi210000000 (1iN)\sqrt{X_i^2+Y_i^2} \le 10\,000\,000\ (1 \le i \le N)

  • (Xi,Yi)(Xj,Yj) (1i<jN)(X_i,Y_i) \ne (X_j,Y_j)\ (1 \le i < j \le N)

  • 1Z01791 \le Z_0 \le 179

Library

Library In this task, you can use a library which contains a function calculating an angle determined by three points. The library is contained in the file aerobatics.h in the archive. The specification is as follows.

  • double GetAngle(int xa, int ya, int xb, int yb, int xc, int yc)
    This function calculates the angle BAC\mathrm{BAC} in degree. It returns a real number with sufficiently small error. Make sure the order of the parameters.
    • Concerning the point AA, the parameter xa is the xx-coordinate of the point AA, and the parameter ya is the yy-coordinate of the point AA.
    • Concerning the point BB, the parameter xb is the xx-coordinate of the point BB, and the parameter yb is the yy-coordinate of the point BB.
    • Concerning the point CC, the parameter xc is the xx-coordinate of the point CC, and the parameter yc is the yy-coordinate of the point CC.
    • If the coordinates of the points A, BA,~B are the same or the coordinates of the points A, CA,~C are the same, the behavior of this function is undefined.

In your program calculating the solutions of this task, you may use the function GetAngle in the library. If you use it, you may modify the function.

The GetAngle is the same as the function used by the grader.

Grading

For each output data, your score is calculated in the following way.

If your output is incorrect, your score is 00. For example, if the output sequence P1,P2,,PNP_1, P_2, \ldots , P_N is not permutation of 1,2,,N1, 2, \ldots, N or the format of the output is incorrect, your score is 00.

If your output is correct, your score is calculated as follows. Let ZZ (degree) be the minimum angle of the polygonal line at the N2N − 2 checkpoints, except for the starting checkpoint and the last checkpoint. Then your score SS is calculated by the following formula.

  • If ZZ0Z\geq Z_0, your score is SS.
  • If Z<Z0Z<Z_0,yourscoreis, your score is S \times \dfrac{f(Z/180)}{f(Z_0/180)}$

Here function f(α) (0α1)f(\alpha)~(0\leq\alpha 1) is defined by f(α)=4α4+αf(\alpha)=4\alpha^4+\alpha.

Your score for this task is the sum of your scores for the 6 input data, rounded to the nearest integer. For each input data, the values of N,Z0N, Z_0 and the score are given in the following table.

Subtask Input Data NN Z0Z_0 Score
11 input_01.txt 1515 100100 1010
22 input_02.txt 200200 143143 1515
33 input_03.txt 134134
44 input_04.txt 10001000 156156 2020
55 input_05.txt 150150
66 input_06.txt 153153

Sample

7 90
3 1
2 5
0 2
-1 6
-3 1
-1 -4
4 -2
5
3
1
7
6
4
2

If the airplane will pass through the checkpoints 5,3,1,7,6,4,25, 3, 1, 7, 6, 4, 2 in this order, the route of the airplane is as in the following figure. The checkpoint with the smallest angle is the checkpoint 6. Its angle is 68.1985968.19859 \cdots (degree). Since Z0=90Z_0 = 90 (degree), your score for this output will be about 61.5%61.5 \% of the score of this input data.