Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

You are given a tree rooted at node 1 with N nodes. Each node i has a value C [ i - 1 ] .

You are given a tree rooted at node 1 with N nodes. Each node i has a value C[i-1].
You need to choose a subset of nodes that satisfies the following conditions:
1. For any two nodes u, v of the chosen subset, if node w is a common ancestor for u and v, then dist(u,w)!= dist(v,w)
2. For any two nodes u, v of the chosen subset where dist(u,root) dist(v,root)-1, then parent[v]!= u.
The value of the subset is the sum of the values of the chosen nodes.
Find the maximum possible value of a chosen subset. Since the answer may be large return it modulo 10^9+7.

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions