Trains the technique from
LeetCode 3558Number of Ways to Assign Edge Weights IThis is an original problem, written from a brief that listed the technique, the difficulty, the topics, the function shape and the input bounds — none of that problem's wording, examples, hints or editorials. The link is there so you can map your practice onto the standard set.
Same function shape, different story and different numbers.
A pipe network is a tree of n junctions numbered 1 through n, joined by n - 1 pipes given as edges, where edges[i] = [u, v] is a pipe between junction u and junction v. Junction 1 is the pumping station.
Let m be the greatest number of pipes on any run that starts at the pumping station and never doubles back.
Each of those m pipes is to be given a weight of either 1 or 2. Return how many ways the weights can be chosen so that they add up to an odd total, taken modulo 1000000007.
Example 1
The junctions form a line, so the longest run out of the station holds three pipes. Of the eight weightings of three pipes, four add up to an odd total.
Example 2
The longest run holds two pipes. Of the four weightings, the two that use one 1 and one 2 add up to an odd total.
Example 3
Every junction hangs directly off the station, so the longest run is one pipe however many branches there are.
The editor is preloaded with this. It matches the parent problem's shape, so a solution that works here transfers to a judge unchanged.
def odd_weightings(edges: list[list[int]]) -> int:public int oddWeightings(int[][] edges)See the step-by-step animation, the intuition, and clean code in every language — free, no credit card.