**Problem Statement:**
Given the required input arguments, write an efficient algorithm to solve the **Queue Reconstruction by Height** problem. Implement the required logic as specified by standard definitions for this classic algorithmic challenge.
**Hint / Expected Approach:**
Sort by height desc, then by k asc; insert at index k
**Edge Cases to Consider:**
- (1) All same height
- (2) Already valid order
- (3) k > current array length