博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
CodeForces 891A Pride (数学)
阅读量:6440 次
发布时间:2019-06-23

本文共 1702 字,大约阅读时间需要 5 分钟。

You have an array a with length n, you can perform operations. Each operation is like this: choose two adjacent elements from a, say x and y, and replace one of them with gcd(x, y), where gcd denotes the greatest common divisor.

What is the minimum number of operations you need to make all of the elements equal to 1?

Input

The first line of the input contains one integer n (1 ≤ n ≤ 2000) — the number of elements in the array.

The second line contains n space separated integers a1, a2, ..., an (1 ≤ ai ≤ 109) — the elements of the array.

Output

Print -1, if it is impossible to turn all numbers to 1. Otherwise, print the minimum number of operations needed to make all numbers equal to 1.

Example

Input
5
2 2 3 4 6
Output
5
Input
4
2 4 6 8
Output
-1
Input
3
2 6 9
Output
4
Note
In the first sample you can turn all numbers to 1 using the following 5 moves:

[2, 2, 3, 4, 6].

[2, 1, 3, 4, 6]
[2, 1, 3, 1, 6]
[2, 1, 1, 1, 6]
[1, 1, 1, 1, 6]
[1, 1, 1, 1, 1]
We can prove that in this case it is not possible to make all numbers one using less than 5 moves.

题意:

相邻的两个数的GCD(最大公约数)可以替换其中的一个数,问最少需要多少步能将数列中的所有数全部都换成1。

题解:

首先,当数列中存在1的时候,答案明显就是N减去1的个数。不存在1的时候,想办法构造1出来,假设区间[L,R]的gcd为gcd(L, R) ,那么GCD(L, R + 1) = gcd(gcd(L,R), A(R + 1))。那么只要找到最短的区间使得gcd(L,R)==1,答案就是R-L+n-1了。

#include
#include
using namespace std;int a[2005];const int INF=0x3f3f3f3f;int gcd(int a,int b){ return b==0?a:gcd(b,a%b);}int main(){ int n; while(cin>>n) { int cnt=0; for(int i=0;i
>a[i]; if(a[i]==1) cnt++; } if(cnt) { cout<
<

转载于:https://www.cnblogs.com/orion7/p/7898437.html

你可能感兴趣的文章
细聊分布式ID生成方法
查看>>
第四周作业
查看>>
Linux上的文件查找工具之locate与find
查看>>
LeetCode-Move Zeroes
查看>>
结对第2次作业——WordCount进阶需求
查看>>
Python面向对象之面向对象基本概念
查看>>
PDB文件:每个开发人员都必须知道的
查看>>
脸上有酒窝,脖子后有痣,胸前有颗痣,此三种人不能错过
查看>>
用VC++开发Oracle数据库应用程序详解2
查看>>
bzoj1305
查看>>
SpringAOP面向切面编程
查看>>
[USACO12JAN]Video Game Combos
查看>>
Multiset的使用 TOJ 2196.Nuanran's Idol II 与 UVA11136 Hoax or what
查看>>
Linux安装相关
查看>>
WIN7 下 在cmd 命令中 进入某个目录 的方法
查看>>
查看被锁的表和解锁
查看>>
canvas自适应圆形时钟绘制
查看>>
币值转换编程总结
查看>>
javascript中关于value的一个小知识点(value既是属性也是变量)
查看>>
cookie创建,使用 . session与Cookie区别
查看>>