Given a graph where each node is a city. And you can build power plant in a city.
The power produced by a power plant is value[i]. Choose the optimal nodes for the power plants to maximize the total value from the cities.
Return the maximum total value.
The power produced by a power plant is value[i]. Choose the optimal nodes for the power plants to maximize the total value from the cities.
Return the maximum total value.
Solve the problem:
Python3def maxTotalValue(cities, connections, from_city, to_city, values, k):
"""
:type cities: int
:type connections: int
:type from_city: List[int]
:type to_city: List[int]
:type values: List[int]
:type k: int
:rtype: int
"""
Solution
Get one-to-one training from Google Facebook engineers
Top-notch Professionals
Learn from Facebook and Google senior engineers interviewed 100+ candidates.
Most recent interview questions and system design topics gathered from aonecode alumnus.
One-to-one online classes. Get feedbacks from real interviewers.
Customized Private Class
Already a coding expert? - Advance straight to hard interview topics of your interest.
New to the ground? - Develop basic coding skills with your own designated mentor.
Days before interview? - Focus on most important problems in target company question bank.