LeetCode in Kotlin

882. Reachable Nodes In Subdivided Graph

Hard

You are given an undirected graph (the “original graph”) with n nodes labeled from 0 to n - 1. You decide to subdivide each edge in the graph into a chain of nodes, with the number of new nodes varying between each edge.

The graph is given as a 2D array of edges where edges[i] = [ui, vi, cnti] indicates that there is an edge between nodes ui and vi in the original graph, and cnti is the total number of new nodes that you will subdivide the edge into. Note that cnti == 0 means you will not subdivide the edge.

To subdivide the edge [ui, vi], replace it with (cnti + 1) new edges and cnti new nodes. The new nodes are x1, x2, …, xcnti, and the new edges are [ui, x1], [x1, x2], [x2, x3], …, [xcnti-1, xcnti], [xcnti, vi].

In this new graph, you want to know how many nodes are reachable from the node 0, where a node is reachable if the distance is maxMoves or less.

Given the original graph and maxMoves, return the number of nodes that are reachable from node 0 in the new graph.

Example 1:

Input: edges = [[0,1,10],[0,2,1],[1,2,2]], maxMoves = 6, n = 3

Output: 13

Explanation: The edge subdivisions are shown in the image above. The nodes that are reachable are highlighted in yellow.

Example 2:

Input: edges = [[0,1,4],[1,2,6],[0,2,8],[1,3,1]], maxMoves = 10, n = 4

Output: 23

Example 3:

Input: edges = [[1,2,4],[1,4,5],[1,3,1],[2,3,4],[3,4,5]], maxMoves = 17, n = 5

Output: 1

Explanation: Node 0 is disconnected from the rest of the graph, so only node 0 is reachable.

Constraints:

Solution

import java.util.PriorityQueue

class Solution {
    fun reachableNodes(edges: Array<IntArray>, maxMoves: Int, n: Int): Int {
        val adList = getAdList(edges, n)
        val pQueue = PriorityQueue { a: IntArray, b: IntArray ->
            a[1] - b[1]
        }
        val minDis = IntArray(n)
        var res = 0
        pQueue.add(intArrayOf(0, 0))
        while (pQueue.isNotEmpty()) {
            val poll = pQueue.poll()
            val node = poll[0]
            val dist = poll[1]
            if (minDis[node] > 0) continue
            res++
            minDis[node] = dist
            for (child in adList[node]!!) {
                val cNode = child!![0]
                val weight = child[1]
                if (cNode != 0 && minDis[cNode] == 0) {
                    res += (maxMoves - dist).coerceAtMost(weight)
                    val cNodeDist = dist + weight + 1
                    if (cNodeDist <= maxMoves) pQueue.add(intArrayOf(cNode, cNodeDist))
                } else {
                    res += (weight - (maxMoves - minDis[cNode]).coerceAtMost(weight)).coerceAtMost(
                        (maxMoves - dist).coerceAtMost(weight)
                    )
                }
            }
        }
        return res
    }

    private fun getAdList(edges: Array<IntArray>, n: Int): Array<ArrayList<IntArray?>?> {
        val adList: Array<ArrayList<IntArray?>?> = arrayOfNulls<ArrayList<IntArray?>?>(n)
        adList[0] = ArrayList()
        for (edge in edges) {
            val s = edge[0]
            val d = edge[1]
            val w = edge[2]
            if (adList[s] == null) adList[s] = ArrayList()
            if (adList[d] == null) adList[d] = ArrayList()
            adList[s]?.add(intArrayOf(d, w))
            adList[d]?.add(intArrayOf(s, w))
        }
        return adList
    }
}