Welcome to Subscribe On Youtube

2603. Collect Coins in a Tree

Description

There exists an undirected and unrooted tree with n nodes indexed from 0 to n - 1. You are given an integer n and a 2D integer array edges of length n - 1, where edges[i] = [ai, bi] indicates that there is an edge between nodes ai and bi in the tree. You are also given an array coins of size n where coins[i] can be either 0 or 1, where 1 indicates the presence of a coin in the vertex i.

Initially, you choose to start at any vertex in the tree. Then, you can perform the following operations any number of times: 

  • Collect all the coins that are at a distance of at most 2 from the current vertex, or
  • Move to any adjacent vertex in the tree.

Find the minimum number of edges you need to go through to collect all the coins and go back to the initial vertex.

Note that if you pass an edge several times, you need to count it into the answer several times.

 

Example 1:

Input: coins = [1,0,0,0,0,1], edges = [[0,1],[1,2],[2,3],[3,4],[4,5]]
Output: 2
Explanation: Start at vertex 2, collect the coin at vertex 0, move to vertex 3, collect the coin at vertex 5 then move back to vertex 2.

Example 2:

Input: coins = [0,0,0,1,1,0,0,1], edges = [[0,1],[0,2],[1,3],[1,4],[2,5],[5,6],[5,7]]
Output: 2
Explanation: Start at vertex 0, collect the coins at vertices 4 and 3, move to vertex 2,  collect the coin at vertex 7, then move back to vertex 0.

 

Constraints:

  • n == coins.length
  • 1 <= n <= 3 * 104
  • 0 <= coins[i] <= 1
  • edges.length == n - 1
  • edges[i].length == 2
  • 0 <= ai, bi < n
  • ai != bi
  • edges represents a valid tree.

Solutions

  • class Solution {
        public int collectTheCoins(int[] coins, int[][] edges) {
            int n = coins.length;
            Set<Integer>[] g = new Set[n];
            Arrays.setAll(g, k -> new HashSet<>());
            for (var e : edges) {
                int a = e[0], b = e[1];
                g[a].add(b);
                g[b].add(a);
            }
            Deque<Integer> q = new ArrayDeque<>();
            for (int i = 0; i < n; ++i) {
                if (coins[i] == 0 && g[i].size() == 1) {
                    q.offer(i);
                }
            }
            while (!q.isEmpty()) {
                int i = q.poll();
                for (int j : g[i]) {
                    g[j].remove(i);
                    if (coins[j] == 0 && g[j].size() == 1) {
                        q.offer(j);
                    }
                }
                g[i].clear();
            }
            q.clear();
            for (int k = 0; k < 2; ++k) {
                for (int i = 0; i < n; ++i) {
                    if (g[i].size() == 1) {
                        q.offer(i);
                    }
                }
                for (int i : q) {
                    for (int j : g[i]) {
                        g[j].remove(i);
                    }
                    g[i].clear();
                }
            }
            int ans = 0;
            for (var e : edges) {
                int a = e[0], b = e[1];
                if (g[a].size() > 0 && g[b].size() > 0) {
                    ans += 2;
                }
            }
            return ans;
        }
    }
    
  • class Solution {
    public:
        int collectTheCoins(vector<int>& coins, vector<vector<int>>& edges) {
            int n = coins.size();
            unordered_set<int> g[n];
            for (auto& e : edges) {
                int a = e[0], b = e[1];
                g[a].insert(b);
                g[b].insert(a);
            }
            queue<int> q;
            for (int i = 0; i < n; ++i) {
                if (coins[i] == 0 && g[i].size() == 1) {
                    q.push(i);
                }
            }
            while (!q.empty()) {
                int i = q.front();
                q.pop();
                for (int j : g[i]) {
                    g[j].erase(i);
                    if (coins[j] == 0 && g[j].size() == 1) {
                        q.push(j);
                    }
                }
                g[i].clear();
            }
            for (int k = 0; k < 2; ++k) {
                vector<int> q;
                for (int i = 0; i < n; ++i) {
                    if (g[i].size() == 1) {
                        q.push_back(i);
                    }
                }
                for (int i : q) {
                    for (int j : g[i]) {
                        g[j].erase(i);
                    }
                    g[i].clear();
                }
            }
            int ans = 0;
            for (auto& e : edges) {
                int a = e[0], b = e[1];
                if (g[a].size() && g[b].size()) {
                    ans += 2;
                }
            }
            return ans;
        }
    };
    
  • class Solution:
        def collectTheCoins(self, coins: List[int], edges: List[List[int]]) -> int:
            g = defaultdict(set)
            for a, b in edges:
                g[a].add(b)
                g[b].add(a)
            n = len(coins)
            q = deque(i for i in range(n) if len(g[i]) == 1 and coins[i] == 0)
            while q:
                i = q.popleft()
                for j in g[i]:
                    g[j].remove(i)
                    if coins[j] == 0 and len(g[j]) == 1:
                        q.append(j)
                g[i].clear()
            for k in range(2):
                q = [i for i in range(n) if len(g[i]) == 1]
                for i in q:
                    for j in g[i]:
                        g[j].remove(i)
                    g[i].clear()
            return sum(len(g[a]) > 0 and len(g[b]) > 0 for a, b in edges) * 2
    
    
  • func collectTheCoins(coins []int, edges [][]int) int {
    	n := len(coins)
    	g := make([]map[int]bool, n)
    	for i := range g {
    		g[i] = map[int]bool{}
    	}
    	for _, e := range edges {
    		a, b := e[0], e[1]
    		g[a][b] = true
    		g[b][a] = true
    	}
    	q := []int{}
    	for i, c := range coins {
    		if c == 0 && len(g[i]) == 1 {
    			q = append(q, i)
    		}
    	}
    	for len(q) > 0 {
    		i := q[0]
    		q = q[1:]
    		for j := range g[i] {
    			delete(g[j], i)
    			if coins[j] == 0 && len(g[j]) == 1 {
    				q = append(q, j)
    			}
    		}
    		g[i] = map[int]bool{}
    	}
    	for k := 0; k < 2; k++ {
    		q := []int{}
    		for i := range coins {
    			if len(g[i]) == 1 {
    				q = append(q, i)
    			}
    		}
    		for _, i := range q {
    			for j := range g[i] {
    				delete(g[j], i)
    			}
    			g[i] = map[int]bool{}
    		}
    	}
    	ans := 0
    	for _, e := range edges {
    		a, b := e[0], e[1]
    		if len(g[a]) > 0 && len(g[b]) > 0 {
    			ans += 2
    		}
    	}
    	return ans
    }
    
  • function collectTheCoins(coins: number[], edges: number[][]): number {
        const n = coins.length;
        const g: Set<number>[] = new Array(n).fill(0).map(() => new Set<number>());
        for (const [a, b] of edges) {
            g[a].add(b);
            g[b].add(a);
        }
        let q: number[] = [];
        for (let i = 0; i < n; ++i) {
            if (coins[i] === 0 && g[i].size === 1) {
                q.push(i);
            }
        }
        while (q.length) {
            const i = q.pop()!;
            for (const j of g[i]) {
                g[j].delete(i);
                if (coins[j] === 0 && g[j].size === 1) {
                    q.push(j);
                }
            }
            g[i].clear();
        }
        q = [];
        for (let k = 0; k < 2; ++k) {
            for (let i = 0; i < n; ++i) {
                if (g[i].size === 1) {
                    q.push(i);
                }
            }
            for (const i of q) {
                for (const j of g[i]) {
                    g[j].delete(i);
                }
                g[i].clear();
            }
        }
        let ans = 0;
        for (const [a, b] of edges) {
            if (g[a].size > 0 && g[b].size > 0) {
                ans += 2;
            }
        }
        return ans;
    }
    
    

All Problems

All Solutions