Skip to content

3633. Maximize The Number Of Target Nodes After Connecting Trees I

Difficulty: Medium

LeetCode Problem View on GitHub


3633. Maximize the Number of Target Nodes After Connecting Trees I

Medium


There exist two undirected trees with n and m nodes, with distinct labels in ranges [0, n - 1] and [0, m - 1], respectively.

You are given two 2D integer arrays edges1 and edges2 of lengths n - 1 and m - 1, respectively, where edges1[i] = [ai, bi] indicates that there is an edge between nodes ai and bi in the first tree and edges2[i] = [ui, vi] indicates that there is an edge between nodes ui and vi in the second tree. You are also given an integer k.

Node u is target to node v if the number of edges on the path from u to v is less than or equal to k. Note that a node is always target to itself.

Return an array of n integers answer, where answer[i] is the maximum possible number of nodes target to node i of the first tree if you have to connect one node from the first tree to another node in the second tree.

Note that queries are independent from each other. That is, for every query you will remove the added edge before proceeding to the next query.

 

Example 1:

Input: edges1 = [[0,1],[0,2],[2,3],[2,4]], edges2 = [[0,1],[0,2],[0,3],[2,7],[1,4],[4,5],[4,6]], k = 2

Output: [9,7,9,8,8]

Explanation:

  • For i = 0, connect node 0 from the first tree to node 0 from the second tree.
  • For i = 1, connect node 1 from the first tree to node 0 from the second tree.
  • For i = 2, connect node 2 from the first tree to node 4 from the second tree.
  • For i = 3, connect node 3 from the first tree to node 4 from the second tree.
  • For i = 4, connect node 4 from the first tree to node 4 from the second tree.

Example 2:

Input: edges1 = [[0,1],[0,2],[0,3],[0,4]], edges2 = [[0,1],[1,2],[2,3]], k = 1

Output: [6,3,3,3,3]

Explanation:

For every i, connect node i of the first tree with any node of the second tree.

 

Constraints:

  • 2 <= n, m <= 1000
  • edges1.length == n - 1
  • edges2.length == m - 1
  • edges1[i].length == edges2[i].length == 2
  • edges1[i] = [ai, bi]
  • 0 <= ai, bi < n
  • edges2[i] = [ui, vi]
  • 0 <= ui, vi < m
  • The input is generated such that edges1 and edges2 represent valid trees.
  • 0 <= k <= 1000

Solution

import java.util.ArrayList;

class Solution {
    private ArrayList<ArrayList<Integer>> adj1;
    private ArrayList<ArrayList<Integer>> adj2;
    private int depth[];
    private int res[];

    public int[] maxTargetNodes(int[][] edges1, int[][] edges2, int k) {
        int n = edges1.length, m = edges2.length;
        adj1 = new ArrayList<>();
        adj2 = new ArrayList<>();
        for (int i = 0; i <= n + 1; i++)
            adj1.add(new ArrayList<>());
        for (int i = 0; i <= m + 1; i++)
            adj2.add(new ArrayList<>());
        for (int i = 0; i < edges1.length; i++) {
            int u = edges1[i][0], v = edges1[i][1];
            adj1.get(u).add(v);
            adj1.get(v).add(u);
        }
        for (int i = 0; i < edges2.length; i++) {
            int u = edges2[i][0], v = edges2[i][1];
            adj2.get(u).add(v);
            adj2.get(v).add(u);
        }
        depth = new int[m + 2];
        res = new int[n + 1];
        int find2 = 0;
        for (int i = 0; i <= m; i++) {
            depth = new int[m + 2];
            find2 = Math.max(find2, find2(i, k - 1, -1));
        }
        for (int i = 0; i <= n; i++) {
            depth = new int[n + 2];
            res[i] = find1(i, k, -1) + find2;
        }
        return res;
    }

    private int find1(int u, int k, int par) {
        if (depth[u] > k)
            return 0;
        int res = 1;
        for (int v : adj1.get(u)) {
            if (v != par) {
                depth[v] = 1 + depth[u];
                res += find1(v, k, u);
            }
        }
        return res;
    }

    private int find2(int u, int k, int par) {
        if (depth[u] > k)
            return 0;
        int res = 1;
        for (int v : adj2.get(u)) {
            if (v != par) {
                depth[v] = 1 + depth[u];
                res += find2(v, k, u);
            }
        }
        return res;
    }
}

Complexity Analysis

  • Time Complexity: O(?)
  • Space Complexity: O(?)

Approach

Detailed explanation of the approach will be added here