Codeforces Round #447 (Div. 2) C. Marco and GCD Sequence

来源:互联网 发布:漫客绘心在线阅读软件 编辑:程序博客网 时间:2024/06/05 17:27
                C. Marco and GCD Sequence                time limit per test1 second                memory limit per test256 megabytes                inputstandard input                outputstandard output

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 a1, a2, …, an. He remembered that he calculated gcd(ai, ai + 1, …, aj) for every 1 ≤ i ≤ j ≤ n and put it into a set S. gcd here means the 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.

Input
The first line contains a single integer m (1 ≤ m ≤ 1000) — the size of the set S.

The second line contains m integers s1, s2, …, sm (1 ≤ si ≤ 106) — the elements of the set S. It’s guaranteed that the elements of the set are given in strictly increasing order, that means s1 < s2 < … < sm.

Output
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 a1, a2, …, an (1 ≤ ai ≤ 106) — the sequence.

We can show that if a solution exists, then there is a solution with n not exceeding 4000 and ai not exceeding 106.

If there are multiple solutions, print any of them.

Examples
input
4
2 4 6 12
output
3
4 6 12
input
2
2 3
output
-1
Note
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(ai, ai + 1, …, aj) for every 1 ≤ i ≤ j ≤ n.


又是一道构造题:
题意:Marco在梦中遇见一个老头,老头告诉了他长生不老的方法,然后Marco想来后却只记得:给你n个所有GCD的集合S,然后让你去构造原来的序列,使得所有原序列的子区间的GCD都在集合S中。如果不存在则输出-1.
思路:如果最小的GCD集合中的元素不是其他的GCD则输出-1,否则把最小的元素插空到集合中。

#include<bits/stdc++.h>using namespace std;const int N=1e3+10;int main(){    int n;    int a[N];    scanf("%d",&n);    for(int i=0;i<n;i++)    {        scanf("%d",&a[i]);    }    for(int i=1;i<n;i++)    {        if(a[i]%a[0])        {            printf("-1\n");            return 0;        }    }    printf("%d\n",2*n-1);    for(int i=0;i<n-1;i++)    {        printf(" %d %d ",a[i],a[0]);    }    printf("%d\n",a[n-1]);    return 0;}
原创粉丝点击