标签:状态 位置 const 这不 scanf 取数游戏 bsp names mes
5 6
7 16 9 24 6
3
选取 3个数16、24、6。gcd(16,24)=8,gcd(24,6)=6。
2≤L≤ai≤1 000 000;
30% 的数据N≤1000;
100% 的数据 N≤50 000
分析:
pos[j] 记录约数为j的最“新”位置
dp[i] 记录前i个数中以i作为最后一个数最多能取多少个
状态转移方程:
dp[i] = max(dp[pos[j]]+1,dp[i])
#include <bits/stdc++.h> using namespace std; const int maxn = 5000005; int pos[maxn]={0}; int dp[maxn]={0}; int a[maxn]={0}; int main() { int n,l; scanf("%d%d",&n,&l); for(int i=1; i<=n; i++) { scanf("%d",&a[i]); } int tmp; int ans = 0; for(int i=1;i<=n;i++) { tmp = sqrt(a[i]); for(int j=1;j<=tmp;j++) { if(a[i]%j==0) { if(j>=l) { dp[i] = max(dp[pos[j]]+1,dp[i]); } if(a[i]/j>=l) { int t = a[i]/j; dp[i] = max(dp[pos[t]]+1,dp[i]); } pos[j] = pos[a[i]/j] = i; } } ans = max(ans,dp[i]); } printf("%d",ans); return 0; }
标签:状态 位置 const 这不 scanf 取数游戏 bsp names mes
原文地址:https://www.cnblogs.com/hao-tian/p/9926546.html