CF1508D.Swap Pass

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

Based on a peculiar incident at basketball practice, Akari came up with the following competitive programming problem!

You are given nn points on the plane, no three of which are collinear. The ii -th point initially has a label aia_i , in such a way that the labels a1,a2,,ana_1, a_2, \dots, a_n form a permutation of 1,2,,n1, 2, \dots, n .

You are allowed to modify the labels through the following operation:

  1. Choose two distinct integers ii and jj between 11 and nn .
  2. Swap the labels of points ii and jj , and finally
  3. Draw the segment between points ii and jj .

A sequence of operations is valid if after applying all of the operations in the sequence in order, the kk -th point ends up having the label kk for all kk between 11 and nn inclusive, and the drawn segments don't intersect each other internally. Formally, if two of the segments intersect, then they must do so at a common endpoint of both segments.

In particular, all drawn segments must be distinct.

Find any valid sequence of operations, or say that none exist.

输入格式

The first line contains an integer nn ( 3n20003 \le n \le 2000 ) — the number of points.

The ii -th of the following nn lines contains three integers xix_i , yiy_i , aia_i ( 106xi,yi106-10^6 \le x_i, y_i \le 10^6 , 1ain1 \le a_i \le n ), representing that the ii -th point has coordinates (xi,yi)(x_i, y_i) and initially has label aia_i .

It is guaranteed that all points are distinct, no three points are collinear, and the labels a1,a2,,ana_1, a_2, \dots, a_n form a permutation of 1,2,,n1, 2, \dots, n .

输出格式

If it is impossible to perform a valid sequence of operations, print 1-1 .

Otherwise, print an integer kk ( 0kn(n1)20 \le k \le \frac{n(n - 1)}{2} ) — the number of operations to perform, followed by kk lines, each containing two integers ii and jj ( 1i,jn1 \le i, j \le n , iji\neq j ) — the indices of the points chosen for the operation.

Note that you are not required to minimize or maximize the value of kk .

If there are multiple possible answers, you may print any of them.

输入输出样例

  • 输入#1

    5
    -1 -2 2
    3 0 5
    1 3 4
    4 -3 3
    5 2 1

    输出#1

    5
    1 2
    5 3
    4 5
    1 5
    1 3
  • 输入#2

    3
    5 4 1
    0 0 2
    -3 -2 3

    输出#2

    0

说明/提示

The following animation showcases the first sample test case. The black numbers represent the indices of the points, while the boxed orange numbers represent their labels.

In the second test case, all labels are already in their correct positions, so no operations are necessary.

首页