CF266C.Below the Diagonal

普及/提高-

通过率:0%

AC君温馨提醒

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

题目描述

The first line contains an integer nn (2<=n<=1000)(2<=n<=1000) — the number of rows and columns. Then follow n1n-1 lines that contain one's positions, one per line. Each position is described by two integers xk,ykx_{k},y_{k} (1<=xk,yk<=n)(1<=x_{k},y_{k}<=n) , separated by a space. A pair (xk,yk)(x_{k},y_{k}) means that the cell, which is located on the intersection of the xkx_{k} -th row and of the yky_{k} -th column, contains one.

It is guaranteed that all positions are distinct.

输入格式

Print the description of your actions. These actions should transform the matrix to the described special form.

In the first line you should print a non-negative integer mm (m<=105)(m<=10^{5}) — the number of actions. In each of the next mm lines print three space-separated integers t,i,jt,i,j (1<=t<=2,1<=i,j<=n,ij)(1<=t<=2,1<=i,j<=n,i≠j) , where t=1t=1 if you want to swap rows, t=2t=2 if you want to swap columns, and ii and jj denote the numbers of rows or columns respectively.

Please note, that you do not need to minimize the number of operations, but their number should not exceed 10510^{5} . If there are several solutions, you may print any of them.

输出格式

输入输出样例

  • 输入#1

    2
    1 2
    

    输出#1

    2
    2 1 2
    1 1 2
    
  • 输入#2

    3
    3 1
    1 3
    

    输出#2

    3
    2 2 3
    1 1 3
    1 1 2
    
  • 输入#3

    3
    2 1
    3 2
    

    输出#3

    0
    
首页