Class Solution

  • All Implemented Interfaces:

    
    public final class Solution
    
                        

    2497 - Maximum Star Sum of a Graph\.

    Medium

    There is an undirected graph consisting of n nodes numbered from 0 to n - 1. You are given a 0-indexed integer array vals of length n where vals[i] denotes the value of the <code>i<sup>th</sup></code> node.

    You are also given a 2D integer array edges where <code>edgesi = a<sub>i</sub>, b<sub>i</sub></code> denotes that there exists an undirected edge connecting nodes <code>a<sub>i</sub></code> and <code>b<sub>i.</sub></code>

    A star graph is a subgraph of the given graph having a center node containing 0 or more neighbors. In other words, it is a subset of edges of the given graph such that there exists a common node for all edges.

    The image below shows star graphs with 3 and 4 neighbors respectively, centered at the blue node.

    The star sum is the sum of the values of all the nodes present in the star graph.

    Given an integer k, return the maximum star sum of a star graph containing at most k edges.

    Example 1:

    Input: vals = 1,2,3,4,10,-10,-20, edges = \[\[0,1],1,2,1,3,3,4,3,5,3,6], k = 2

    Output: 16

    Explanation: The above diagram represents the input graph.

    The star graph with the maximum star sum is denoted by blue.

    It is centered at 3 and includes its neighbors 1 and 4. It can be shown it is not possible to get a star graph with a sum greater than 16.

    Example 2:

    Input: vals = -5, edges = [], k = 0

    Output: -5

    Explanation: There is only one possible star graph, which is node 0 itself. Hence, we return -5.

    Constraints:

    • n == vals.length

    • <code>1 <= n <= 10<sup>5</sup></code>

    • <code>-10<sup>4</sup><= valsi<= 10<sup>4</sup></code>

    • 0 &lt;= edges.length &lt;= min(n * (n - 1) / 2<code>, 10<sup>5</sup>)</code>

    • edges[i].length == 2

    • <code>0 <= a<sub>i</sub>, b<sub>i</sub><= n - 1</code>

    • <code>a<sub>i</sub> != b<sub>i</sub></code>

    • 0 &lt;= k &lt;= n - 1

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
      Solution()
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      final Integer maxStarSum(IntArray nodeValues, Array<IntArray> edges, Integer maxNumberOfEdges)
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait