Vitaly has an array of n distinct integers. Vitaly wants to divide this array into three non-empty sets so as the following conditions hold:
The product of all numbers in the first set is less than zero ( < 0).
The product of all numbers in the second set is greater than zero ( > 0).
The product of all numbers in the third set is equal to zero.
Each number from the initial array must occur in exactly one set.
Help Vitaly. Divide the given array.
Input
The first line of the input contains integer n (3 ≤ n ≤ 100). The second line contains n space-separated distinct integers a1, a2, …, an (|ai| ≤ 103) — the array elements.
Output
In the first line print integer n1 (n1 > 0) — the number of elements in the first set. Then print n1 numbers — the elements that got to the first set.
In the next line print integer n2 (n2 > 0) — the number of elements in the second set. Then print n2 numbers — the elements that got to the second set.
In the next line print integer n3 (n3 > 0) — the number of elements in the third set. Then print n3 numbers — the elements that got to the third set.
The printed sets must meet the described conditions. It is guaranteed that the solution exists. If there are several solutions, you are allowed to print any of them.
Example
Input
3
-1 2 0
Output
1 -1
1 2
1 0
Input
4
-1 -2 -3 0
Output
1 -1
2 -3 -2
1 0
题意 将一个数组,分成三个组,第一组所有数乘为负数,第二组所由数乘为整数,第三组所有数乘为0; (题目保证一定能够分成功)
水题
代码
#include<bits/stdc++.h>
using namespace std;
#define LL long long
const int MAXN =200;
int n;
int arr[MAXN];
int a[MAXN];
int b[MAXN];
int c[MAXN];
int main(){
scanf("%d",&n);
int aa=0;int bb=0;int cc=0;
for(int i=0;i<n;i++){
int zz;scanf("%d",&zz);
if(zz<0) a[++aa]=zz;
if(zz>0) b[++bb]=zz;
if(zz==0)c[++cc]=zz;
}
if(!(aa&1)) {c[++cc]=a[aa]; aa--;}//如果有偶数个负数,分一个给0的组
if(bb==0) {//如果没有正数,分两个负数给这个数组
b[++bb]=a[aa--];
b[++bb]=a[aa--];
}
printf("%d ",aa);for(int i=1;i<=aa;i++) printf("%d ",a[i]);puts("");
printf("%d ",bb);for(int i=1;i<=bb;i++) printf("%d ",b[i]);puts("");
printf("%d ",cc);for(int i=1;i<=cc;i++) printf("%d ",c[i]);puts("");
return 0;
}