Пожалуйста, прочтите новое правило об ограничении использования AI-инструментов. ×

A DOUBT IN KONIG THEOREM PROBLEM

Правка en6, от Ritu_1149, 2024-10-03 13:33:41

Cole, volunteers as a shelver at the school library, where the encyclopedias need to be re- organized. After re-organizing all the encyclopedias, Cole realizes that some of the encyclopedias are shelved in the wrong order. To fix the mistake, Cole decides to remove all the encyclopedias from the n by m shelf. While reshelving the encyclopedias, Cole realizes that the most efficient way to reshelve the encyclopedias is to select one encyclopedia, remove it, and remove all the other encyclopedias in the same row and column that the author wrote of the encyclopedia Cole chose. Cole wants to determine the minimum number of encyclopedias that need to be selected to remove all the encyclopedias from the shelf.

Note: The encyclopedias shelf section contains k authors. Each author is represented by an integer from 1 to k.

Example Let there be k = 3 authors. Let the following matrix represent the encyclopedias shelf:

221 111 233

Cole can choose the encyclopedia at position (2,3) in the first operation and remove it. Then, the matrix looks like this:

22X XXX 233

Cole can choose the encyclopedia at position (1,1) in the second operation and remove it. Then, the matrix looks like this:

XXX XXX x33

Cole can choose the encyclopedia at position (3,3) in the third operation and remove it. Then, the matrix looks like this:

XXX XXX XXX

So the answer for this sample is 3

1<=n,m<=1000, k<=50

Can anyone help me with its solution?

My approach: first make a bipartite graph for each author, and connect edges of a node with all other nodes, which are in the same column and same row with it, next look for the min vertex cover, such that those minimum vertex cover will cover all edges, and that will be my answer.

3 3 3 2 1 2 1 1 1 2 3 3

FOR THIS SAMPLE THE answer is like for the author 1

u can have bipartite graph like with undirected edges at vertices (0,0)-(1,1) (1,0)-(1,1) (1,0)-(1,2) (1,1)-(1,2)

here the min vertex cover is 1 that is (1,1)

similarly we can have graph at nodes

(0,0)-(0,2) (0,0)-(2,0) for author 2

and here also max matching or min vertex cover is 1

and for author 3

(2,2) — (2,3)

also its 1 and hence final anwer is 3

But I'm unable to code it. If anyone could help me, it would be much better....

История

 
 
 
 
Правки
 
 
  Rev. Язык Кто Когда Δ Комментарий
en6 Английский Ritu_1149 2024-10-03 13:33:41 2 Tiny change: ' answer.\n3 3 3\n2' -> ' answer.\n\n3 3 3\n2'
en5 Английский Ritu_1149 2024-10-03 13:32:19 842
en4 Английский Ritu_1149 2024-10-03 13:17:25 10
en3 Английский Ritu_1149 2024-10-03 13:16:43 15 Tiny change: 'ias shelf: Confidential\n221\n111' -> 'ias shelf:\n\n221\n111'
en2 Английский Ritu_1149 2024-10-03 13:16:02 59
en1 Английский Ritu_1149 2024-10-03 13:12:51 1464 Initial revision (published)