题目链接:http://codeforces.com/contest/632/problem/D
题意:给n个数,然后你要找到一个最长的序列,使得序列中的数的lcm小于m
解法:cm和顺序无关,所以我们只要统计每个数有多少个就好了,然后再类似筛法一样,去筛每一个数的因子有多少个就好了。比较考思维的一道好题。
//CF 632D
#include <bits/stdc++.h>
using namespace std;
const int maxn = 1e6+7;
int n, m, a[maxn], cnt[maxn], dp[maxn];//dp[i]代表lcm为i的最长的长度
int main()
{
scanf("%d%d", &n, &m);
for(int i = 1; i <= n; i++){
scanf("%d", &a[i]);
if(a[i] <= m) cnt[a[i]]++;
}
for(int i = 1; i <= m; i++){
for(int j = i; j <= m; j += i){
dp[j] += cnt[i];
}
}
long long ans1 = -1, ans2 = -1;
for(int i = 1; i <= m; i++){
if(dp[i] > ans1){
ans1 = dp[i];
ans2 = i;
}
}
cout << ans2 << " " << ans1 << endl;
for(int i = 1; i <= n; i++){
if(ans2%a[i] == 0){
cout << i << " ";
}
}
cout << endl;
}