Polycarp likes to play with numbers. He takes some integer number xx, writes it down on the board, and then performs with it n−1n−1 operations of the two kinds:
- divide the number xx by 33 (xx must be divisible by 33);
- multiply the number xx by 22.
After each operation, Polycarp writes down the result on the board and replaces xx by the result. So there will be nn numbers on the board after all.
You are given a sequence of length nn — the numbers that Polycarp wrote down. This sequence is given in arbitrary order, i.e. the order of the sequence can mismatch the order of the numbers written on the board.
Your problem is to rearrange (reorder) elements of this sequence in such a way that it can match possible Polycarp's game in the order of the numbers written on the board. I.e. each next number will be exactly two times of the previous number or exactly one third of previous number.
It is guaranteed that the answer exists.
Input
The first line of the input contatins an integer number nn (2≤n≤1002≤n≤100) — the number of the elements in the sequence. The second line of the input contains nninteger numbers a1,a2,…,ana1,a2,…,an (1≤ai≤3⋅10181≤ai≤3⋅1018) — rearranged (reordered) sequence that Polycarp can wrote down on the board.
Output
Print nn integer numbers — rearranged (reordered) input sequence that can be the sequence that Polycarp could write down on the board.
It is guaranteed that the answer exists.
Examples
6 4 8 6 3 12 9
9 3 6 12 4 8
4 42 28 84 126
126 42 84 28
2 1000000000000000000 3000000000000000000
3000000000000000000 1000000000000000000
Note
In the first example the given sequence can be rearranged in the following way: [9,3,6,12,4,8][9,3,6,12,4,8]. It can match possible Polycarp's game which started with x=9
x=9.
题意就是把给出的数排成一个序列,使前面一个数使是后面一个数三倍或者二分之一。
一开始看到的时候完全蒙了,不知道怎么做。但你把数看成结点,满足前后关系就连一条有向边,实际上就是一个拓扑排序的问题。没想到只能说明我dfs学的太死了,完全不会应用。
AC代码:
#include <iostream>
#include <cstdio>
#include <cstring>
#include <vector>
using namespace std;
int n;
unsigned long long a[110];
vector<unsigned long long> d;
int vis[110];
void dfs(int count)
{
if(count==n)
{
for(vector<unsigned long long >::iterator i=d.begin();i!=d.end();i++)
cout<<*i<<' ';
cout<<endl;
return;
}
unsigned long long t=*(d.end()-1);
for(int i=1;i<=n;i++){
if(vis[i])
continue;
if(a[i]*3==t||t*2==a[i])
{
d.push_back(a[i]);
vis[i]=1;
dfs(count+1);
vis[i]=0;
d.pop_back();
}
}
}
int main()
{
while(cin>>n)
{
for(int i=1;i<=n;i++)
cin>>a[i];
for(int i=1;i<=n;i++)
{
vis[i]=1;
d.push_back(a[i]);
dfs(1);
vis[i]=0;
d.pop_back();
}
}
return 0;
}