LeetCode-882. Reachable Nodes In Subdivided Graph [C++][Java]

LeetCode-882. Reachable Nodes In Subdivided GraphLevel up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.https://leetcode.com/problems/reachable-nodes-in-subdivided-graph/

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 x1x2, ..., 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:

  • 0 <= edges.length <= min(n * (n - 1) / 2, 10^4)
  • edges[i].length == 3
  • 0 <= ui < vi < n
  • There are no multiple edges in the graph.
  • 0 <= cnti <= 10^4
  • 0 <= maxMoves <= 10^9
  • 1 <= n <= 3000

【C++】

class Solution {
public:
    struct greater{
        bool operator()(pair<int, int> const& l, pair<int, int> const& r){
            return l.second < r.second;
        }
    };
    int reachableNodes(vector<vector<int>>& edges, int maxMoves, int n) {
         int res = 0;
        unordered_map<int, unordered_map<int, int>> graph;
        vector<bool> visited(n);
        priority_queue<pair<int, int>, vector<pair<int, int>>, greater> tracks;
        tracks.push({0, maxMoves});
        for (auto &edge : edges) {
            graph[edge[0]][edge[1]] = edge[2];
            graph[edge[1]][edge[0]] = edge[2];
        }
        while (!tracks.empty()) {
            auto t= tracks.top();
            tracks.pop();
            int cur = t.first;
            int move = t.second;
            if (visited[cur]) {continue;}
            visited[cur] = true;
            ++res;
            for (auto &next : graph[cur]) {
                if (move > next.second && !visited[next.first]) {
                    tracks.push({next.first, move - next.second - 1});
                }
                int subNodes = min(move, next.second);
                graph[next.first][cur] -= subNodes ;
                res += subNodes ;
            }
        }
        return res;
    }
};

【Java】

class Solution {
    public int reachableNodes(int[][] edges, int maxMoves, int n) {
        int res = 0;
        boolean[] visited = new boolean[n];
        Arrays.fill(visited, false);
        HashMap<Integer, HashMap<Integer, Integer>> graph = new HashMap<>();
        for (int i = 0; i < n; i++) {
            graph.put(i, new HashMap<>());
        }
        for (int[] edge : edges) {
            graph.get(edge[0]).put(edge[1], edge[2]);
            graph.get(edge[1]).put(edge[0], edge[2]);
        }
        PriorityQueue<int[]> tracks = new PriorityQueue<>((a,b)->(b[1]-a[1]));
        tracks.offer(new int[]{0, maxMoves});
        while (!tracks.isEmpty()) {
            int[] track = tracks.poll();
            int cur = track[0];
            int move = track[1];
            if (visited[cur]) {
                continue;
            }
            visited[cur] = true;
            ++res;
            HashMap<Integer, Integer> nexts = graph.get(cur);
            for (int next : nexts.keySet()) {
                if (move > nexts.get(next) && !visited[next]) {
                    int remain = move - nexts.get(next) - 1;
                    tracks.offer(new int[]{next, remain});
                }
                int subMoves = Math.min(move, nexts.get(next));
                res += subMoves;
                int remainMove = graph.get(next).get(cur) - subMoves;
                graph.get(next).put(cur, remainMove);
            }
        }
        return res;
    }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

贫道绝缘子

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值