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

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

I'm stuck with this problem and can't figure out how to proceed.Can anyone give me some hints how can i solve it using BPM?

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

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

Think of a graph with nodes corresponding to rows on the left and nodes corresponding co columns on the right.

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

Search about minimum vertex cover on bipartite, König's theorem.

Interesting part of this problem is that you shouldn't output the cardinality of MVC, but you should be able to recover the solution as well. Proof of König's theorem on Wikipedia already provides an efficient algorithm for retrieving that.