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

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

How to solve the last problem? Link

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

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

Find number of distinct subtrees (non isomorphic rooted) of second tree. Find number of distinct leaves in first subtree. The answer is product of both of them.

Note: distinct leaves means that one cannot act as substitute for another(Bad explanation).

To find distinct subtrees or distinct leaves ,use hashing (strong one ,easy ones are hacked)

There are some details left to work on your own. refer to the code for help.
My code for reference: Here

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

problem statement not visible bro!