A11681 | Divide by three, multiply by two
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Polycarp likes to play with numbers. He takes some integer number $x$ , writes it down on the board, and then performs with it $n - 1$ operations of the two kinds:
- divide the number $x$ by $3$ ( $x$ must be divisible by $3$ );
- multiply the number $x$ by $2$ .
After each operation, Polycarp writes down the result on the board and replaces $x$ by the result. So there will be $n$ numbers on the board after all.
You are given a sequence of length $n$ — 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.
- divide the number $x$ by $3$ ( $x$ must be divisible by $3$ );
- multiply the number $x$ by $2$ .
After each operation, Polycarp writes down the result on the board and replaces $x$ by the result. So there will be $n$ numbers on the board after all.
You are given a sequence of length $n$ — 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.
输入格式
The first line of the input contatins an integer number $n$ ( $2 \le n \le 100$ ) — the number of the elements in the sequence. The second line of the input contains $n$ integer numbers $a_1, a_2, \dots, a_n$ ( $1 \le a_i \le 3 \cdot 10^{18}$ ) — rearranged (reordered) sequence that Polycarp can wrote down on the board.
输出格式
Print $n$ 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.
It is guaranteed that the answer exists.
输入输出样例
输入 #1
6 4 8 6 3 12 9
输出 #1
9 3 6 12 4 8
输入 #2
4 42 28 84 126
输出 #2
126 42 84 28
输入 #3
2 1000000000000000000 3000000000000000000
输出 #3
3000000000000000000 1000000000000000000
In the first example the given sequence can be rearranged in the following way: $[9, 3, 6, 12, 4, 8]$ . It can match possible Polycarp's game which started with $x = 9$ .
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted