308455: CF1523B. Lord of the Values

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Lord of the Values

题意翻译

$t$ 组数据,每组数据给一个数组长度 $n$,以及数组 $a$。要求通过以下两个操作使得 $a$ 数组中的元素变为原来的相反数并输出方案。 挑选下标 $1\le i<j\le n.$ - 将 $a_i$ 加上 $a_j$。 - 将 $a_j$ 减去 $a_i$。 保证 $n$ 是偶数。操作数不能超过 $5000$,操作过程中元素的绝对值不能超过 $10^{18}$。 $1\le t\le 10;2\le n\le 10^3;1\le a_i\le 10^9.$

题目描述

![](https://cdn.luogu.com.cn/upload/vjudge_pic/CF1523B/98f109d71d38cfa25029619d650ed4d2b886de82.png)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 $ a_1, a_2, \ldots, a_n $ to $ -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 $ 5\,000 $ and after every operation no variable can have an absolute value greater than $ 10^{18} $ . William can perform actions of two types for two chosen variables with indices $ i $ and $ j $ , where $ i < j $ : 1. Perform assignment $ a_i = a_i + a_j $ 2. Perform assignment $ a_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 $ t $ ( $ 1 \le t \le 20 $ ). Description of the test cases follows. The first line of each test case contains a single even integer $ n $ ( $ 2 \le n \le 10^3 $ ), which is the number of internal variables. The second line of each test case contains $ n $ integers $ a_1, a_2, \ldots, a_n $ $ (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 $ k $ , which the strategy will perform. Note that you do not have to minimize $ k $ . The inequality $ k \le 5\,000 $ must be satisfied. Each of the next $ k $ 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 < j $ should hold. We can show that an answer always exists.

输入输出样例

输入样例 #1

2
4
1 1 1 1
4
4 3 1 2

输出样例 #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

说明

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\]

Input

题意翻译

$t$ 组数据,每组数据给一个数组长度 $n$,以及数组 $a$。要求通过以下两个操作使得 $a$ 数组中的元素变为原来的相反数并输出方案。 挑选下标 $1\le i<j\le n.$ - 将 $a_i$ 加上 $a_j$。 - 将 $a_j$ 减去 $a_i$。 保证 $n$ 是偶数。操作数不能超过 $5000$,操作过程中元素的绝对值不能超过 $10^{18}$。 $1\le t\le 10;2\le n\le 10^3;1\le a_i\le 10^9.$

加入题单

算法标签: