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

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

Hello codeforces! can anyone explain me the test case of this question ? Thanks in advance :)

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

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

consider the graph of the test case.

1    5
  |\    
  2  4  
  |
  3

you notice that number of groups is max number of levels which will be 3 in this case because: level 1: nodes 1,5. level 2 : nodes 2,4. level 3 : nodes 3.

which will form groups in it there are not any superior of another in same group. to calculate answer you will use bfs algorithm for graph .

hope it well.