368 Largest Divisible Subset
Given a set ofdistinct positive
integers, find the largest subset such that every pair(Si, Sj)
of elements in this subset satisfies:Si % Sj = 0
orSj % Si = 0
.
Notice
If there are multiple solutions, return any subset is fine.
Example
Given nums =[1,2,3]
, return[1,2]
or[1,3]
Given nums =[1,2,4,8]
, return[1,2,4,8]
这题把数组里的数排序了以后,又转化为L76了。不过这里判断的条件不是数j大于数i,而是能否被整除。还是去[j] + 1和本身两个中的max。注意还要用一个parent数组来把组成LIS的数给记住,因为最后返回结果是把这些数都找出来。
Last updated
Was this helpful?