Блог пользователя The-Winner

Автор The-Winner, 12 месяцев назад, По-английски

I was wondering if there is any faster algorithm than O(N^2) that solves the following problem: Given a tree made of N nodes, where each node has an integer value asociated to it, find the minimum/maximum distance between two nodes whose values are coprime(if such a pair exists).

For example, given the following tree:

The minimum distance is 1 and can be obtained in multiple ways, but one of them is:

And the maximum distance is 4 and can be obtained like this:

I couldn't find anything like this by googling so I thought this is the best place to ask. Thank you in advance.

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

»
12 месяцев назад, # |
  Проголосовать: нравится -9 Проголосовать: не нравится

What's the constraint for ai

  • »
    »
    12 месяцев назад, # ^ |
      Проголосовать: нравится -7 Проголосовать: не нравится

    I didn't find this problem anywhere, just thought about it, I suppose you can make it <=N or <=1e6 or 1e7.

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

Deleted.

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

It can be solved using centroid decomposition but I'm not aware of the details

»
12 месяцев назад, # |
  Проголосовать: нравится +21 Проголосовать: не нравится

By using centroid decomposition you can turn the problem into finding $$$b_i = \max_{i\perp j} a_j$$$, which can be solved by using parallel binary search in

Unable to parse markup [type=CF_MATHJAX]

.The whole complexity is $$$O(n \log^2 n 2^{\omega(n)})$$$.