VK Cup 2015 - Finals, online mirror F. Clique in the Divisibility Graph 数论

108 篇文章 0 订阅
44 篇文章 0 订阅
F. Clique in the Divisibility Graph
time limit per test
1 second
memory limit per test
256 megabytes
input
standard input
output
standard output

As you must know, the maximum clique problem in an arbitrary graph is NP-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, ..., an} as follows. The vertices of the given graph are numbers from set A, and two numbers ai and aj (i ≠ j) are connected by an edge if and only if either ai is divisible by aj, or aj is divisible by ai.

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

Input

The first line contains integer n (1 ≤ n ≤ 106), that sets the size of set A.

The second line contains n distinct positive integers a1, a2, ..., an (1 ≤ ai ≤ 106) — elements of subset A. The numbers in the line follow in the ascending order.

Output

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

Sample test(s)
input
8
3 4 6 8 10 18 21 24
output
3
Note

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

题意,要求,给出一个数组序列,要求最长的成倍增长的序列如 2 6 24 96等。

因为n比较小,所以用dp做,dp[i]表示,i所能形成的最长序列,

则dp[i] = max(dp[i],dp[j] + 1)  i % j == 0;只要从前往后推就可以了。

复杂度为n + n /2  + n /3 + n/4 ....  = n * log(n);也就可以了

#define N 1000050
#define M 100005
#define maxn 205
#define MOD 1000000000000000007
int n,pri[N],dp[N],num[N];
void solve(){
    dp[1] = num[1];
	for(int i = 1;i<=pri[n];i++){
		for(int j = i + i;j<= pri[n];j+=i)
            {
                dp[j] = max(dp[j],dp[i] + num[j]);
            }
	}
	int ans = 0;
	for (int i = 1; i <= n; i++){
		ans = max(ans,dp[pri[i]]);
	}
	printf("%d\n",ans);
}
int main()
{
    while(S(n)!=EOF)
    {
        fill(dp,0);
        fill(num,0);
        for(int i = 1;i<=n;i++) S(pri[i]),num[pri[i]]++;
        solve();
    }
    return 0;
}


  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值