#P1523B. Lord of the Values

    ID: 5909 Type: RemoteJudge 1000ms 256MiB Tried: 0 Accepted: 0 Difficulty: (None) Uploaded By: Tags>constructive algorithms*1100

Lord of the Values

No submission language available for this problem.

Description

While trading on his favorite exchange trader William realized that he found a vulnerability. Using this vulnerability he could change the values of certain internal variables to his advantage. To play around he decided to change the values of all internal variables from a1,a2,,ana_1, a_2, \ldots, a_n to a1,a2,,an-a_1, -a_2, \ldots, -a_n. For some unknown reason, the number of service variables is always an even number.

William understands that with his every action he attracts more and more attention from the exchange's security team, so the number of his actions must not exceed 50005\,000 and after every operation no variable can have an absolute value greater than 101810^{18}. William can perform actions of two types for two chosen variables with indices ii and jj, where i<ji < j:

  1. Perform assignment ai=ai+aja_i = a_i + a_j
  2. Perform assignment aj=ajaia_j = a_j - a_i
William wants you to develop a strategy that will get all the internal variables to the desired values.

Each test contains multiple test cases. The first line contains the number of test cases tt (1t201 \le t \le 20). Description of the test cases follows.

The first line of each test case contains a single even integer nn (2n1032 \le n \le 10^3), which is the number of internal variables.

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (1ai109)(1 \le a_i \le 10^9), which are initial values of internal variables.

For each test case print the answer in the following format:

The first line of output must contain the total number of actions kk, which the strategy will perform. Note that you do not have to minimize kk. The inequality k5000k \le 5\,000 must be satisfied.

Each of the next kk lines must contain actions formatted as "type i j", where "type" is equal to "1" if the strategy needs to perform an assignment of the first type and "2" if the strategy needs to perform an assignment of the second type. Note that i<ji < j should hold.

We can show that an answer always exists.

Input

Each test contains multiple test cases. The first line contains the number of test cases tt (1t201 \le t \le 20). Description of the test cases follows.

The first line of each test case contains a single even integer nn (2n1032 \le n \le 10^3), which is the number of internal variables.

The second line of each test case contains nn integers a1,a2,,ana_1, a_2, \ldots, a_n (1ai109)(1 \le a_i \le 10^9), which are initial values of internal variables.

Output

For each test case print the answer in the following format:

The first line of output must contain the total number of actions kk, which the strategy will perform. Note that you do not have to minimize kk. The inequality k5000k \le 5\,000 must be satisfied.

Each of the next kk lines must contain actions formatted as "type i j", where "type" is equal to "1" if the strategy needs to perform an assignment of the first type and "2" if the strategy needs to perform an assignment of the second type. Note that i<ji < j should hold.

We can show that an answer always exists.

Samples

Sample Input 1

2
4
1 1 1 1
4
4 3 1 2

Sample Output 1

8
2 1 2
2 1 2
2 1 3
2 1 3
2 1 4
2 1 4
1 1 2
1 1 2
8
2 1 4
1 2 4
1 2 4
1 2 4
1 3 4
1 1 2
1 1 2
1 1 4

Note

For the first sample test case one possible sequence of operations is as follows:

  1. "2 1 2". Values of variables after performing the operation: [1, 0, 1, 1]
  2. "2 1 2". Values of variables after performing the operation: [1, -1, 1, 1]
  3. "2 1 3". Values of variables after performing the operation: [1, -1, 0, 1]
  4. "2 1 3". Values of variables after performing the operation: [1, -1, -1, 1]
  5. "2 1 4". Values of variables after performing the operation: [1, -1, -1, 0]
  6. "2 1 4". Values of variables after performing the operation: [1, -1, -1, -1]
  7. "1 1 2". Values of variables after performing the operation: [0, -1, -1, -1]
  8. "1 1 2". Values of variables after performing the operation: [-1, -1, -1, -1]

For the second sample test case one possible sequence of operations is as follows:

  1. "2 1 4". Values of variables after performing the operation: [4, 3, 1, -2]
  2. "1 2 4". Values of variables after performing the operation: [4, 1, 1, -2]
  3. "1 2 4". Values of variables after performing the operation: [4, -1, 1, -2]
  4. "1 2 4". Values of variables after performing the operation: [4, -3, 1, -2]
  5. "1 3 4". Values of variables after performing the operation: [4, -3, -1, -2]
  6. "1 1 2". Values of variables after performing the operation: [1, -3, -1, -2]
  7. "1 1 2". Values of variables after performing the operation: [-2, -3, -1, -2]
  8. "1 1 4". Values of variables after performing the operation: [-4, -3, -1, -2]