codeforces 977D Divide by three, multiply by two

D. Divide by three, multiply by two
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

Polycarp likes to play with numbers. He takes some integer number xx, writes it down on the board, and then performs with it n1n−1operations 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 (2n1002≤n≤100) — the number of the elements in the sequence. The second line of the input contains nn integer numbers a1,a2,,ana1,a2,…,an (1ai310181≤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
input
Copy
6
4 8 6 3 12 9
output
Copy
9 3 6 12 4 8 
input
Copy
4
42 28 84 126
output
Copy
126 42 84 28 
input
Copy
2
1000000000000000000 3000000000000000000
output
Copy
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=9x=9.


题目大意:刚开始有一个数x,可以将它乘2,或者如果它能整除3,可以将它除以3,然后给出进行了n次操作以后所得到的一串数(乱序),求每一次的操作时的数

将这些数统一处理,如果有能除以3变成的数就互相连一条边,比如如果有9和3,就让9和3连一条边,乘2的也是这样,然后跑一边拓扑排序

#include<iostream>
#include<vector>
using namespace std;
typedef long long ll;
const int maxn=110;
ll num[maxn];
vector<ll> vec;
vector<ll> map[maxn];
int in[maxn];
int main()
{
	int n;
	cin>>n;
	for(int i=0;i<n;i++)
	{
		cin>>num[i];
	}
	for(int i=0;i<n;i++)
	{
		for(int j=0;j<n;j++)
		{
			if(i==j) continue;
			if((num[i]%3==0&&num[i]/3==num[j])||num[i]*2==num[j])
			{
				map[i].push_back(j);
				in[j]++;
			}
		}
	}
	int ans=0;
	vector<ll> vec;
	while(true)
	{
		
		for(int i=0;i<n;i++)
		{
			if(in[i]==0)
			{
				ans++;
				in[i]=-1;
				vec.push_back(num[i]);
				for(int j=0;j<map[i].size();j++)
				{
					in[map[i][j]]--;
				}
				break;
			}
		}
		if(ans==n) break;
	}
	for(int i=0;i<vec.size();i++)
	{
		cout<<vec[i]<<' ';
	}
	return 0;
}

猜你喜欢

转载自blog.csdn.net/qq_37943488/article/details/80228387