CF566F.Clique in the Divisibility Graph

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

As you must know, the maximum clique problem in an arbitrary graph is NPNP -hard. Nevertheless, for some graphs of specific kinds it can be solved effectively.

Just in case, let us remind you that a clique in a non-directed graph is a subset of the vertices of a graph, such that any two vertices of this subset are connected by an edge. In particular, an empty set of vertexes and a set consisting of a single vertex, are cliques.

Let's define a divisibility graph for a set of positive integers A=a1,a2,...,anA={a_{1},a_{2},...,a_{n}} as follows. The vertices of the given graph are numbers from set AA , and two numbers aia_{i} and aja_{j} ( iji≠j ) are connected by an edge if and only if either aia_{i} is divisible by aja_{j} , or aja_{j} is divisible by aia_{i} .

You are given a set of non-negative integers AA . Determine the size of a maximum clique in a divisibility graph for set AA .

输入格式

The first line contains integer nn ( 1<=n<=1061<=n<=10^{6} ), that sets the size of set AA .

The second line contains nn distinct positive integers a1,a2,...,ana_{1},a_{2},...,a_{n} ( 1<=ai<=1061<=a_{i}<=10^{6} ) — elements of subset AA . The numbers in the line follow in the ascending order.

输出格式

Print a single number — the maximum size of a clique in a divisibility graph for set AA .

输入输出样例

  • 输入#1

    8
    3 4 6 8 10 18 21 24
    

    输出#1

    3
    

说明/提示

In the first sample test a clique of size 3 is, for example, a subset of vertexes 3,6,18{3,6,18} . A clique of a larger size doesn't exist in this graph.

首页