Processing math: 100%

Friday, July 24, 2020

CSES Tree Matching

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)=ichildrenmax[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)=maxtchildren({ichildrenmax[dp(Ci,0),dp(Ci,1)]}max[dp(Ct,0),dp(Ct,1)]+dp(Ct,0)+1)
=maxtchildren(dp(P,0)max[dp(Ct,0),dp(Ct,1)]+dp(Ct,0)+1)




No comments:

Post a Comment

CSES Subtree Queries

You are given a rooted tree consisting of n nodes. The nodes are numbered 1,2,…,n, and node 1 is the root. Each node has a value. Your...