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

Автор Muhammad_mhs, история, 4 года назад, По-английски

In this problem, I have to find sum of all pairs lcm of an array. I find this from morass blog.Can anyone explain it. Thanks in advance.

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

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

https://proofwiki.org/wiki/GCD_and_LCM_Distribute_Over_Each_Other

Using this property, you can solve it with prefix gcd. I think this is an efficient way. it can be solved in o(n) now. You can study the blogs written about the problem "Orac and LCM". This may help you