CF1025D.Recovering BST
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Dima the hamster enjoys nibbling different things: cages, sticks, bad problemsetters and even trees!
Recently he found a binary search tree and instinctively nibbled all of its edges, hence messing up the vertices. Dima knows that if Andrew, who has been thoroughly assembling the tree for a long time, comes home and sees his creation demolished, he'll get extremely upset.
To not let that happen, Dima has to recover the binary search tree. Luckily, he noticed that any two vertices connected by a direct edge had their greatest common divisor value exceed 1 .
Help Dima construct such a binary search tree or determine that it's impossible. The definition and properties of a binary search tree can be found here.
输入格式
The first line contains the number of vertices n ( 2≤n≤700 ).
The second line features n distinct integers ai ( 2≤ai≤109 ) — the values of vertices in ascending order.
输出格式
If it is possible to reassemble the binary search tree, such that the greatest common divisor of any two vertices connected by the edge is greater than 1 , print "Yes" (quotes for clarity).
Otherwise, print "No" (quotes for clarity).
输入输出样例
输入#1
6 3 6 9 18 36 108
输出#1
Yes
输入#2
2 7 17
输出#2
No
输入#3
9 4 8 10 12 15 18 33 44 81
输出#3
Yes
说明/提示
The picture below illustrates one of the possible trees for the first example.
The picture below illustrates one of the possible trees for the third example.