305498: CF1042C. Array Product
Memory Limit:256 MB
Time Limit:1 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Array Product
题意翻译
给你一个长度为$n$的整数序列,你可以对其做两种操作: $1$、选$0<i,j<=n,i!=j$,将$a_j$替换为$a_i\cdot a_j$,删除$a_i$。 $2$、选一个未被删除的$a_i$,将其删除。**该操作在任意时刻均可执行,最多执行一次**。 你需要操作n-1次,剩下一个数,使其最大。由于剩下的数可能会很大,你需要输出得到它的操作序列。 **输出任意能得到最大数的操作序列均可。**题目描述
You are given an array $ a $ consisting of $ n $ integers. You can perform the following operations with it: 1. Choose some positions $ i $ and $ j $ ( $ 1 \le i, j \le n, i \ne j $ ), write the value of $ a_i \cdot a_j $ into the $ j $ -th cell and remove the number from the $ i $ -th cell; 2. Choose some position $ i $ and remove the number from the $ i $ -th cell (this operation can be performed no more than once and at any point of time, not necessarily in the beginning). The number of elements decreases by one after each operation. However, the indexing of positions stays the same. Deleted numbers can't be used in the later operations. Your task is to perform exactly $ n - 1 $ operations with the array in such a way that the only number that remains in the array is maximum possible. This number can be rather large, so instead of printing it you need to print any sequence of operations which leads to this maximum number. Read the output format to understand what exactly you need to print.输入输出格式
输入格式
The first line contains a single integer $ n $ ( $ 2 \le n \le 2 \cdot 10^5 $ ) — the number of elements in the array. The second line contains $ n $ integers $ a_1, a_2, \dots, a_n $ ( $ -10^9 \le a_i \le 10^9 $ ) — the elements of the array.
输出格式
Print $ n - 1 $ lines. The $ k $ -th line should contain one of the two possible operations. The operation of the first type should look like this: $ 1~ i_k~ j_k $ , where $ 1 $ is the type of operation, $ i_k $ and $ j_k $ are the positions of the chosen elements. The operation of the second type should look like this: $ 2~ i_k $ , where $ 2 $ is the type of operation, $ i_k $ is the position of the chosen element. Note that there should be no more than one such operation. If there are multiple possible sequences of operations leading to the maximum number — print any of them.
输入输出样例
输入样例 #1
5
5 -2 0 1 -3
输出样例 #1
2 3
1 1 2
1 2 4
1 4 5
输入样例 #2
5
5 2 0 4 0
输出样例 #2
1 3 5
2 5
1 1 2
1 2 4
输入样例 #3
2
2 -1
输出样例 #3
2 2
输入样例 #4
4
0 -10 0 0
输出样例 #4
1 1 2
1 2 3
1 3 4
输入样例 #5
4
0 0 0 0
输出样例 #5
1 1 2
1 2 3
1 3 4