PracHub
QuestionsPremiumCoachesLearningGuidesInterview Prep
|Home/Coding & Algorithms/Collegevine

Find the Highest-Cost Top-Level Job

Last updated: May 6, 2026

Quick Overview

This question evaluates the ability to process hierarchical JSON data, aggregate durations across tree-structured job relationships, and reason about robustness and scalability concerns such as malformed input handling and performance for large datasets.

  • medium
  • Collegevine
  • Coding & Algorithms
  • Software Engineer

Find the Highest-Cost Top-Level Job

Company: Collegevine

Role: Software Engineer

Category: Coding & Algorithms

Difficulty: medium

Interview Round: Technical Screen

You are given a local JSON file, `jobs.json`, containing an array of background job records. Each record has: - `id`: a unique job identifier - `parent_id`: the identifier of the parent job, or missing/null for a top-level job - `duration_ms`: the amount of time this job took to run, in milliseconds A job may spawn child jobs, and those child jobs may spawn more jobs, forming a forest of job trees. The total cost of a top-level job is defined as: `its own duration_ms + the duration_ms of all descendant jobs` Write a function that computes the total cost for every top-level job and returns the top-level job with the largest total cost, along with that cost. If multiple top-level jobs have the same maximum total cost, returning any one of them is acceptable. Example: ```text A: 5ms ├── B: 1ms └── C: 3ms ``` The total cost for `A` is `5 + 1 + 3 = 9ms`. Follow-up: What improvements would you make for large inputs or production use, such as avoiding recursion-depth issues, handling malformed data, detecting cycles, or improving performance?

Quick Answer: This question evaluates the ability to process hierarchical JSON data, aggregate durations across tree-structured job relationships, and reason about robustness and scalability concerns such as malformed input handling and performance for large datasets.

Collegevine logo
Collegevine
Apr 16, 2026, 12:00 AM
Software Engineer
Technical Screen
Coding & Algorithms
0
0

You are given a local JSON file, jobs.json, containing an array of background job records. Each record has:

  • id : a unique job identifier
  • parent_id : the identifier of the parent job, or missing/null for a top-level job
  • duration_ms : the amount of time this job took to run, in milliseconds

A job may spawn child jobs, and those child jobs may spawn more jobs, forming a forest of job trees. The total cost of a top-level job is defined as:

its own duration_ms + the duration_ms of all descendant jobs

Write a function that computes the total cost for every top-level job and returns the top-level job with the largest total cost, along with that cost. If multiple top-level jobs have the same maximum total cost, returning any one of them is acceptable.

Example:

A: 5ms
├── B: 1ms
└── C: 3ms

The total cost for A is 5 + 1 + 3 = 9ms.

Follow-up: What improvements would you make for large inputs or production use, such as avoiding recursion-depth issues, handling malformed data, detecting cycles, or improving performance?

Submit Your Answer

Sign in to leave a comment

Loading comments...

Browse More Questions

More Coding & Algorithms•More Collegevine•More Software Engineer•Collegevine Software Engineer•Collegevine 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.