CF266C.Below the Diagonal
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
The first line contains an integer n (2<=n<=1000) — the number of rows and columns. Then follow n−1 lines that contain one's positions, one per line. Each position is described by two integers xk,yk (1<=xk,yk<=n) , separated by a space. A pair (xk,yk) means that the cell, which is located on the intersection of the xk -th row and of the yk -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 m (m<=105) — the number of actions. In each of the next m lines print three space-separated integers t,i,j (1<=t<=2,1<=i,j<=n,i=j) , where t=1 if you want to swap rows, t=2 if you want to swap columns, and i and j 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 105 . 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