A11404. Marco and GCD Sequence
编程题
普及/提高-
知识点
题目描述
In a dream Marco met an elderly man with a pair of black glasses. The man told him the key to immortality and then disappeared with the wind of time.
When he woke up, he only remembered that the key was a sequence of positive integers of some length $n$ , but forgot the exact sequence. Let the elements of the sequence be $a_{1},a_{2},...,a_{n}$ . He remembered that he calculated $gcd(a_{i},a_{i+1},...,a_{j})$ for every $1<=i<=j<=n$ and put it into a set $S$ . $gcd$ here means the [greatest common divisor](https://en.wikipedia.org/wiki/Greatest_common_divisor).
Note that even if a number is put into the set $S$ twice or more, it only appears once in the set.
Now Marco gives you the set $S$ and asks you to help him figure out the initial sequence. If there are many solutions, print any of them. It is also possible that there are no sequences that produce the set $S$ , in this case print -1.
When he woke up, he only remembered that the key was a sequence of positive integers of some length $n$ , but forgot the exact sequence. Let the elements of the sequence be $a_{1},a_{2},...,a_{n}$ . He remembered that he calculated $gcd(a_{i},a_{i+1},...,a_{j})$ for every $1<=i<=j<=n$ and put it into a set $S$ . $gcd$ here means the [greatest common divisor](https://en.wikipedia.org/wiki/Greatest_common_divisor).
Note that even if a number is put into the set $S$ twice or more, it only appears once in the set.
Now Marco gives you the set $S$ and asks you to help him figure out the initial sequence. If there are many solutions, print any of them. It is also possible that there are no sequences that produce the set $S$ , in this case print -1.
输入格式
The first line contains a single integer $m$ ( $1<=m<=1000$ ) — the size of the set $S$ .
The second line contains $m$ integers $s_{1},s_{2},...,s_{m}$ ( $1<=s_{i}<=10^{6}$ ) — the elements of the set $S$ . It's guaranteed that the elements of the set are given in strictly increasing order, that means $s_{1}<s_{2}<...<s_{m}$ .
The second line contains $m$ integers $s_{1},s_{2},...,s_{m}$ ( $1<=s_{i}<=10^{6}$ ) — the elements of the set $S$ . It's guaranteed that the elements of the set are given in strictly increasing order, that means $s_{1}<s_{2}<...<s_{m}$ .
输出格式
If there is no solution, print a single line containing -1.
Otherwise, in the first line print a single integer $n$ denoting the length of the sequence, $n$ should not exceed $4000$ .
In the second line print $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{6}$ ) — the sequence.
We can show that if a solution exists, then there is a solution with $n$ not exceeding $4000$ and $a_{i}$ not exceeding $10^{6}$ .
If there are multiple solutions, print any of them.
Otherwise, in the first line print a single integer $n$ denoting the length of the sequence, $n$ should not exceed $4000$ .
In the second line print $n$ integers $a_{1},a_{2},...,a_{n}$ ( $1<=a_{i}<=10^{6}$ ) — the sequence.
We can show that if a solution exists, then there is a solution with $n$ not exceeding $4000$ and $a_{i}$ not exceeding $10^{6}$ .
If there are multiple solutions, print any of them.
输入输出样例
输入 #1
4 2 4 6 12
输出 #1
3 4 6 12
输入 #2
2 2 3
输出 #2
-1
说明/提示
In the first example $2=gcd(4,6)$ , the other elements from the set appear in the sequence, and we can show that there are no values different from $2$ , $4$ , $6$ and $12$ among $gcd(a_{i},a_{i+1},...,a_{j})$ for every $1<=i<=j<=n$ .