Блог пользователя wish_me

Автор wish_me, история, 7 лет назад, По-английски

Can any one tell me the solution of the problem.

Eg. Input: 2 3 9 Output: 3 Explanation: Total sub-array are:- {2}, {3}, {9}, {2, 3}, {3, 9}, {2, 3, 9}

Subarray which violets the property are:- {9} -> {3 * 3}, Since 3 is a repeating prime factor in prime decomposition of 9 {3, 9} -> {3 * 3 * 3}, 3 is a repeating prime factor in prime decomposition of 27 {2, 3, 9} -> {2 * 3 * 3 * 3}, 3 is repeating prime factor in prime decomposition of 54 Hence total subarray remains which satisfies our condition are 3.

Input: 2, 3, 5, 15, 7, 2 Output: 12

  • Проголосовать: нравится
  • -9
  • Проголосовать: не нравится

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится

You can use two pointers approach. We'll store array cnt, cnt[x] means count of prime factor x in our current subarray. So solution is O(Nsqrt(X)) or O(NlogX + X) depending on the way you'll factorize numbers.

»
7 лет назад, # |
  Проголосовать: нравится 0 Проголосовать: не нравится