309119: CF1627D. Not Adding
Memory Limit:256 MB
Time Limit:2 S
Judge Style:Text Compare
Creator:
Submit:0
Solved:0
Description
Not Adding
题意翻译
你有一个长度为 $n$ 的数组 $a_1,a_2,\dots,a_n$,每次操作你可以选择数组中的两个元素 $a_i,a_j$(**需要保证 $\gcd\{a_i,a_j\}$ 不在原数组内**),然后将 $\gcd\{a_i,a_j\}$ 放到数组末尾。求你最多能够对这个数组进行多少次操作。 数据范围: - $2\leqslant n\leqslant 10^6$。 - $1\leqslant a_i\leqslant 10^6$。 Translated by Eason_AC 2022.1.19题目描述
You have an array $ a_1, a_2, \dots, a_n $ consisting of $ n $ distinct integers. You are allowed to perform the following operation on it: - Choose two elements from the array $ a_i $ and $ a_j $ ( $ i \ne j $ ) such that $ \gcd(a_i, a_j) $ is not present in the array, and add $ \gcd(a_i, a_j) $ to the end of the array. Here $ \gcd(x, y) $ denotes [greatest common divisor (GCD)](https://en.wikipedia.org/wiki/Greatest_common_divisor) of integers $ x $ and $ y $ . Note that the array changes after each operation, and the subsequent operations are performed on the new array. What is the maximum number of times you can perform the operation on the array?输入输出格式
输入格式
The first line consists of a single integer $ n $ ( $ 2 \le n \le 10^6 $ ). The second line consists of $ n $ integers $ a_1, a_2, \dots, a_n $ ( $ 1 \leq a_i \leq 10^6 $ ). All $ a_i $ are distinct.
输出格式
Output a single line containing one integer — the maximum number of times the operation can be performed on the given array.
输入输出样例
输入样例 #1
5
4 20 1 25 30
输出样例 #1
3
输入样例 #2
3
6 10 15
输出样例 #2
4