CF958E3.Guard Duty (hard)

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

Now that Heidi knows that she can assign Rebel spaceships to bases (recall the easy subtask), she is asking you: how exactly to do this? Now, given positions of NN spaceships and NN bases on a plane, your task is to connect spaceships and bases with line segments so that:

  • The segments do not intersect.
  • Such a connection forms a perfect matching.

输入格式

The first line contains an integer NN ( 1<=n<=100001<=n<=10000 ). For 1<=i<=N1<=i<=N , the i+1i+1 -th line contains two integers xix_{i} and yiy_{i} ( xi,yi<=10000|x_{i}|,|y_{i}|<=10000 ) denoting the coordinates of the ii -th spaceship. The following NN lines have the same format, denoting the position of bases. It is guaranteed that no two points coincide and no three points are on the same line.

输出格式

The output should have NN lines. The ii -th line should contain an integer pip_{i} , the index of the base to which the ii -th spaceship is connected. The sequence p1,...,pNp_{1},...,p_{N} should form a permutation of 1,...,N1,...,N .

It is guaranteed that a solution exists. If there are multiple solutions, you can output any one of them.

输入输出样例

  • 输入#1

    4
    6 6
    5 1
    2 4
    4 0
    5 4
    1 2
    2 1
    3 5
    

    输出#1

    4
    1
    2
    3
    
  • 输入#2

    3 6
    6 3 4 2 5 1
    

    输出#2

    3
    
  • 输入#3

    4 12
    15 7 4 19 3 30 14 1 5 23 17 25
    

    输出#3

    6
    

说明/提示

In the first example, there are five valid schedules: [1,4],[6,7][1,4],[6,7] with total time 4, [1,4],[6,12][1,4],[6,12] with total time 9, [1,4],[7,12][1,4],[7,12] with total time 8, [1,6],[7,12][1,6],[7,12] with total time 10, and [4,6],[7,12][4,6],[7,12] with total time 7. So the answer is 4.

In the second example, there is only 1 valid schedule: [1,2],[3,4],[5,6][1,2],[3,4],[5,6] .

For the third example, one possible schedule with total time 6 is: [1,3],[4,5],[14,15],[23,25][1,3],[4,5],[14,15],[23,25] .

首页