help plz

Jun 9, 2019 at 7:39am
Can somebody plz explain the approach to this problem.
I have got partial in it.
I have no idea how to get full AC in it.

link-https://www.codechef.com/JUNE19B/problems/SUMAGCD

Chef has a sequence of positive integers A1,A2,…,AN. He wants to split this sequence into two non-empty (not necessarily contiguous) subsequences B and C such that GCD(B)+GCD(C) is maximum possible. Help him find this maximum value.

Note: The greatest common divisor (GCD) of a sequence of positive integers is the largest positive integer that divides each element of this sequence. For example, the GCD of the sequence (8,12) is 4.

Input
The first line of the input contains a single integer T denoting the number of test cases. The description of T test cases follows.
The first line of each test case contains a single integer N.
The second line contains N space-separated integers A1,A2,…,AN.
Output
For each test case, print a single line containing one integer — the maximum value of GCD(B)+GCD(C).

Constraints
1≤T≤10
2≤N≤105
1≤Ai≤109 for each valid i
Subtasks
Subtask #1 (20 points): 2≤N≤20
Subtask #2 (80 points): original constraints

Example Input
1
4
4 4 7 6
Example Output
9
Explanation
Example case 1: For example, the sequence A can be divided into subsequences B=(4,4,6) and C=(7)
Jun 9, 2019 at 7:40am
you first tell the basic approach you are taking so that we can improve upon it
Jun 9, 2019 at 7:44am
Firstly, I thought Max number+(GCD(rest)) is the answer, but a deeper inspection made me understood I was wrong, but how to correct it is the problem. So I looked at some example like 10,15,14.Here 15+GCD(10,14) gives me 15+2=17 as my answer which would be wrong as I can have {14},{10,15} whose gcd respectively is 14+5=19 which is the solution. Now, how to approach is tricky for me.
Can u plz help.
Jun 9, 2019 at 7:51am
that's really a lame approach.Are you really getting partial marks with this approach??
Jun 9, 2019 at 7:56am
NO I used brute force to get partial.
Can u plz explain the approach
Jun 9, 2019 at 1:34pm
has anybody got AC in this question?
Jun 9, 2019 at 1:44pm
.
Last edited on Jun 11, 2019 at 12:19pm
Jun 9, 2019 at 1:46pm
will u plz give a little hint.
Last edited on Jun 9, 2019 at 1:46pm
Jun 9, 2019 at 4:30pm
Input
3
4
4 4 4 4
4
6 12 16 18
3
3 8 9

Output
8
22
11

Maybe this helps you.
Jun 9, 2019 at 9:14pm
closed account (STD8C542)
.
Last edited on Jun 11, 2019 at 3:24pm
Jun 10, 2019 at 6:32am
cool123dude can you please explain what algo you use ?
Jun 11, 2019 at 9:36am
closed account (309EvCM9)
.
Last edited on Jun 11, 2019 at 1:32pm
Jun 11, 2019 at 10:46am
1
3
10 15 14

output
19
Last edited on Jun 11, 2019 at 10:46am
Jun 11, 2019 at 11:08am
You should know that the CodeChef adjudicators are aware that people are using this forum to cheat, and that they have disqualified people for doing so in the past.
Topic archived. No new replies allowed.