Skip to content

Conversation

@divisonofficer
Copy link
Contributor

Link

(문제에 대한 링크)

Topic

DP, TREE DP

Approach

For Each Tree node, You can find if (i,j) : (TreeSize i, BlackStone Count j) is available by dp on dfs. this method can cause time limit.
Because each table have continus value range, you don't have to find all value is availible. you can just find for BlackStone j and root node n, possible maximun Tree Size and minimum treeSize.
Then For each query, if Tree Size of query is between tree size max~min of black stone cnt of query, result is 1, else 0.

Note

(남길말)

Who the hell come up with that combination of tree and dp :(

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants