1377. Frog Position After T Seconds
Last updated
Last updated
https://leetcode.com/problems/frog-position-after-t-seconds
Given an undirected tree consisting of n
vertices numbered from 1
to n
. A frog starts jumping from vertex 1. In one second, the frog jumps from its current vertex to another unvisited vertex if they are directly connected. The frog can not jump back to a visited vertex. In case the frog can jump to several vertices, it jumps randomly to one of them with the same probability. Otherwise, when the frog can not jump to any unvisited vertex, it jumps forever on the same vertex.
The edges of the undirected tree are given in the array edges
, where edges[i] = [ai, bi]
means that exists an edge connecting the vertices ai
and bi
.
Return the probability that after t
seconds the frog is on the vertex target
.
Example 1:
Example 2:
Example 3:
Constraints:
1 <= n <= 100
edges.length == n - 1
edges[i].length == 2
1 <= ai, bi <= n
1 <= t <= 50
1 <= target <= n
Answers within 10-5
of the actual value will be accepted as correct.