You are given an integer n (n ≥ 2) representing the number of elements in an unknown array of integers sorted in non-decreasing order. You are also provided with a list of n*(n-1)/2 integers. These integers represent the sums of every unique pair of elements from the unknown array, but they are given in an arbitrary order.
Your task is to reconstruct the original array. If multiple valid arrays exist, return the lexicographically smallest one. If no valid array can produce the given pairwise sums, output Impossible
.
Input Format
Output Format
Impossible
.Constraints
Example
Input:
4
3 4 5 5 6 7
Output:
1 2 3 4
Explanation:
The original array can be reconstructed as [1, 2, 3, 4]. The pairwise sums from this array are:
These match the provided input sums.
Note: Your solution should read from standard input and write to standard output. Ensure your code handles all edge cases based on the given constraints.