Problem Description
You are given the root of a binary tree and a positive integer k. The level sum in the tree is the sum of the values of the nodes that are on the same level. Return the k-th largest level sum in the tree (not necessarily distinct). If there are fewer than k levels in the tree, return -1.
Key Insights
- The sum of node values on the same level can be calculated using a level-order traversal (BFS).
- We can utilize a max-heap or sort the level sums to determine the k-th largest sum.
- The constraints allow for a maximum of 100,000 nodes, indicating that the solution should be efficient in both time and space.
Space and Time Complexity
Time Complexity: O(n log n) - where n is the number of levels, due to sorting the level sums. Space Complexity: O(n) - space used for storing level sums.
Solution
To solve this problem, we can perform a level-order traversal (BFS) of the binary tree to calculate the sum of values at each level. We can store these sums in a list. After obtaining all level sums, we can sort the list in descending order and return the k-th element. If the number of levels is less than k, we return -1.