Tree Matching solved with dynamic programming
Let's define :
dp(P,0) : The max matching number that DOES NOT INCLUDE node P.
dp(P,1) : The max matching number that INCLUDES node P.
Therefore, the max matching set size at node P will be max[dp(P,0),dp(P,1)]
Then, let's go more deeper. How can we define dp(P,0)?
It will be the max matching number of all the trees starting at the children nodes (C1,C2...) of node P. That is:
dp(P,0)=∑i∈childrenmax[dp(Ci,0),dp(Ci,1)]
dp(P,1) will be selecting a children node and calculate its optimal, then loop through all the children nodes and compare which children node picked will be the maximum.
dp(P,1)=maxt∈children({∑i∈childrenmax[dp(Ci,0),dp(Ci,1)]}−max[dp(Ct,0),dp(Ct,1)]+dp(Ct,0)+1)
=maxt∈children(dp(P,0)−max[dp(Ct,0),dp(Ct,1)]+dp(Ct,0)+1)
No comments:
Post a Comment