当前位置:   article > 正文

Array Product(CodeForces - 1042C )_you are given an array aa consisting of nn integer

you are given an array aa consisting of nn integers. you want to distribute

You are given an array aa consisting of nn integers. You can perform the following operations with it:

  1. Choose some positions i and j (1≤i,j≤n,i≠j), write the value of ai⋅aj 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.

Input

The first line contains a single integer nn (2≤n≤2⋅10^5) — the number of elements in the array.

The second line contains nn integers a1,a2,…,an (−10^9≤ai≤10^9) — the elements of the array.

Output

Print n−1n−1 lines. The kk-th line should contain one of the two possible operations.

The operation of the first type should look like this: 1 ik jk, where 1 is the type of operation, ik and jk are the positions of the chosen elements.

The operation of the second type should look like this: 2 ik, where 2 is the type of operation, ik 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.

Examples

Input

  1. 5
  2. 5 -2 0 1 -3

Output

  1. 2 3
  2. 1 1 2
  3. 1 2 4
  4. 1 4 5

Input

  1. 5
  2. 5 2 0 4 0

Output

  1. 1 3 5
  2. 2 5
  3. 1 1 2
  4. 1 2 4

Input

  1. 2
  2. 2 -1

Output

2 2

Input

  1. 4
  2. 0 -10 0 0

Output

  1. 1 1 2
  2. 1 2 3
  3. 1 3 4

Input

  1. 4
  2. 0 0 0 0

Output

  1. 1 1 2
  2. 1 2 3
  3. 1 3 4

Note

Let X be the removed number in the array. Let's take a look at all the examples:

The first example has, for example, the following sequence of transformations of the array: [5,−2,0,1,−3]→[5,−2,X,1,−3]→[X,−10,X,1,−3]→[X,X,X,−10,−3]→[X,X,X,X,30]. Thus, the maximum answer is 3030. Note, that other sequences that lead to the answer 3030 are also correct.

The second example has, for example, the following sequence of transformations of the array: [5,2,0,4,0]→[5,2,X,4,0]→[5,2,X,4,X]→[X,10,X,4,X]→[X,X,X,40,X]. The following answer is also allowed:

  1. 1 5 3
  2. 1 4 2
  3. 1 2 1
  4. 2 3

Then the sequence of transformations of the array will look like this: [5,2,0,4,0]→[5,2,0,4,X]→[5,8,0,X,X]→[40,X,0,X,X]→[40,X,X,X,X].

The third example can have the following sequence of transformations of the array: [2,−1]→[2,X].

The fourth example can have the following sequence of transformations of the array: [0,−10,0,0]→[X,0,0,0]→[X,X,0,0]→[X,X,X,0].

The fifth example can have the following sequence of transformations of the array: [0,0,0,0]→[X,0,0,0]→[X,X,0,0]→[X,X,X,0].

代码如下:

  1. #include<iostream>
  2. #include<cstdio>
  3. #include<cstdlib>
  4. #include<cstring>
  5. #include<string>
  6. #include<cmath>
  7. #include<map>
  8. #include<stack>
  9. #include<vector>
  10. #include<queue>
  11. #include<set>
  12. #include<algorithm>
  13. #define max(a,b) (a>b?a:b)
  14. #define min(a,b) (a<b?a:b)
  15. #define swap(a,b) (a=a+b,b=a-b,a=a-b)
  16. #define maxn 320007
  17. #define N 100000000
  18. #define INF 0x3f3f3f3f
  19. #define mod 1000000009
  20. #define e 2.718281828459045
  21. #define eps 1.0e18
  22. #define PI acos(-1)
  23. #define lowbit(x) (x&(-x))
  24. #define read(x) scanf("%d",&x)
  25. #define put(x) printf("%d\n",x)
  26. #define memset(x,y) memset(x,y,sizeof(x))
  27. #define Debug(x) cout<<x<<" "<<endl
  28. #define lson i << 1,l,m
  29. #define rson i << 1 | 1,m + 1,r
  30. #define ll long long
  31. //std::ios::sync_with_stdio(false);
  32. //cin.tie(NULL);
  33. using namespace std;
  34. int a[222222];
  35. int z[222222];
  36. int f[222222];
  37. int main()
  38. {
  39. int n;
  40. scanf("%d",&n);
  41. int k=0,kk=0,minn=INF,nn=0;
  42. for(int i=0; i<n; i++)
  43. {
  44. scanf("%d",&a[i]);
  45. if(a[i]==0)
  46. z[k++]=i;
  47. if(a[i]<0)
  48. {
  49. f[kk++]=i;
  50. if(minn>-1*a[i])
  51. {
  52. minn=-1*a[i];
  53. nn=i;
  54. }
  55. }
  56. }
  57. if(kk%2)//如果为奇数个小于0的值,去掉最大的一个负数,其余数所乘最大
  58. {
  59. a[nn]=0;//任何数*0=0
  60. z[k++]=nn;
  61. }
  62. int t=0;
  63. for(int i=0;i<n;i++)//找第一个可以输出的值
  64. {
  65. if(a[i]!=0)
  66. {
  67. t=i;
  68. break;
  69. }
  70. }
  71. sort(z,z+k);
  72. for(int i=0;i<k-1;i++)//处理0,用1的原因是考虑数据全为0的情况
  73. cout<<"1 "<<z[i]+1<<" "<<z[i+1]+1<<endl;
  74. if(k!=0&&k!=n)//考虑数据全为0的情况
  75. cout<<"2 "<<z[k-1]+1<<endl;
  76. for(int i=t+1;i<n;i++)
  77. {
  78. if(a[i]!=0)
  79. {
  80. cout<<"1 "<<t+1<<" "<<i+1<<endl;
  81. t=i;
  82. }
  83. }
  84. return 0;
  85. }

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/745337
推荐阅读
相关标签
  

闽ICP备14008679号