PracHub
QuestionsPremiumCoachesLearningGuidesInterview Prep
|Home/Coding & Algorithms/Rubrik

Validate BFS order queries on a tree

Last updated: Apr 18, 2026

Quick Overview

This question evaluates understanding of BFS traversal, tree graph representation, and the ability to reason about allowable dequeue/enqueue orderings in a FIFO queue.

  • hard
  • Rubrik
  • Coding & Algorithms
  • Software Engineer

Validate BFS order queries on a tree

Company: Rubrik

Role: Software Engineer

Category: Coding & Algorithms

Difficulty: hard

Interview Round: Take-home Project

You are given an undirected tree described by two equal-length arrays `u` and `v` (each of length `n-1`). For every index `i`, there is an undirected edge between `u[i]` and `v[i]`. The tree contains exactly `n` distinct node labels (labels are arbitrary integers). You are also given `q` queries. Each query is an array `order` of length `n` containing each node label exactly once (a permutation). For each query, decide whether `order` can be the output of a standard **BFS traversal** on this tree under the following rules: - The BFS start node is `order[0]`. - BFS uses a FIFO queue. - When a node is dequeued, you may enqueue its **unvisited** neighbors in **any order** (i.e., neighbor iteration order is not fixed). - The BFS output is the dequeue order. Return a boolean for each query. Example: - `u = [1, 1, 4]`, `v = [3, 2, 3]` defines edges `(1,3), (1,2), (4,3)`. - For `order = [1,2,3,4]`, the answer is `true` (one valid BFS enqueues `2` then `3` after visiting `1`). Constraints (typical interview setting): - `n` can be up to `2e5`. - `q` can be large; aim for better than `O(q * n^2)`.

Quick Answer: This question evaluates understanding of BFS traversal, tree graph representation, and the ability to reason about allowable dequeue/enqueue orderings in a FIFO queue.

Related Interview Questions

  • Find largest connected group of overlapping intervals - Rubrik (hard)
Rubrik logo
Rubrik
Feb 12, 2026, 12:00 AM
Software Engineer
Take-home Project
Coding & Algorithms
8
0

You are given an undirected tree described by two equal-length arrays u and v (each of length n-1). For every index i, there is an undirected edge between u[i] and v[i]. The tree contains exactly n distinct node labels (labels are arbitrary integers).

You are also given q queries. Each query is an array order of length n containing each node label exactly once (a permutation).

For each query, decide whether order can be the output of a standard BFS traversal on this tree under the following rules:

  • The BFS start node is order[0] .
  • BFS uses a FIFO queue.
  • When a node is dequeued, you may enqueue its unvisited neighbors in any order (i.e., neighbor iteration order is not fixed).
  • The BFS output is the dequeue order.

Return a boolean for each query.

Example:

  • u = [1, 1, 4] , v = [3, 2, 3] defines edges (1,3), (1,2), (4,3) .
  • For order = [1,2,3,4] , the answer is true (one valid BFS enqueues 2 then 3 after visiting 1 ).

Constraints (typical interview setting):

  • n can be up to 2e5 .
  • q can be large; aim for better than O(q * n^2) .

Submit Your Answer

Sign in to leave a comment

Loading comments...

Browse More Questions

More Coding & Algorithms•More Rubrik•More Software Engineer•Rubrik Software Engineer•Rubrik Coding & Algorithms•Software Engineer Coding & Algorithms
PracHub

Master your tech interviews with 8,500+ real questions from top companies.

Product

  • Questions
  • Learning Tracks
  • Interview Guides
  • Resources
  • Premium
  • For Universities
  • Student Access

Browse

  • By Company
  • By Role
  • By Category
  • Topic Hubs
  • SQL Questions
  • Compare Platforms
  • Discord Community

Support

  • support@prachub.com
  • (916) 541-4762

Legal

  • Privacy Policy
  • Terms of Service
  • About Us

© 2026 PracHub. All rights reserved.