luogu#P7023. [NWRRC2017] Equal Numbers
[NWRRC2017] Equal Numbers
题目描述
You are given a list of integers . . . , You can perform the following operation: choose some and multiply it by any positive integer.
Your task is to compute the minimum number of different integers that could be on the list after operations for all .
输入格式
The first line of the input contains single integer The second line of the input contains integers
输出格式
Output a single line that contains integers. The i-th integer should be the minimum possible number of different integers in the list after operations.
题目大意
给定一个长度为 的数列 ,每次操作,你可以让某个被选定的数乘上任意一个正整数。
现在。对于所有的 ,求出经过 次操作后数列里面不同的数的数量能够达到的最小值。
Translated by Eason_AC
2020.11.15
6
3 4 1 2 1 2
4 4 3 3 2 2 1
提示
Time limit: 3 s, Memory limit: 512 MB.