Disclaimer : This isn't any kind of homework, the problem just came to my mind while I was going through all the Christmas cards
The problem is given as follows : We've got M envelopes and N letters, each of which is described as a pair of positive integers. Both envelopes and letters are rectangular and obviously can be rotated. A letter fits into an envelope if both dimensions are smaller or equal to the envelope's ones. The goal is to find maximum envelopes-letters matching.
The problem is easily convertible to maximum bipartite matching problem, for which an algorithm running in O(sqrt(M+N) * MN)
exists (Hopcroft-Karp, the conversion runs trivially in O(MN)
). I tried to come up with a greedy algorithm or with a dynamic approach, but I haven't found any.
Do you know about any faster solution?
The following "greedy"-type approach might help.
Define m[i] to be the minimum of the two integers of envelope i.