Sherlock and Coprime Subset

4.5

31 votes
Algorithms, Approved, Bit Manipulation, Dynamic Programming, Medium, Open
Problem

Recently Watson learned the concept of coprime numbers and now he wonders given an array A1, A2 . . . AN what is the size of the largest subset of the array such that the each pair of elements in the subset is coprime.

Watson asks Sherlock for help and in turn Sherlock needs you.

Input
First line contains T, the number of test cases.
Each test case contains N in one line, number of elements in the array.
Next line contains N space separated elements A1, A2 . . . AN.

Output
For each test case, output the required answer in one line.

Constraints:
1 ≤ T ≤ 10
25% test data: 1 ≤ N ≤ 10
75% test data: 1 ≤ N ≤ 50
1 ≤ Ai ≤ 50

Sample Input
1
5
2 3 2 3 2
Sample Output
2
Time Limit: 1
Memory Limit: 256
Source Limit:
Explanation

The largest subset would be taking one of A[0], A[1], A[2] and taking one of A[3], A[4].

Contributers:
Editor Image

?