Problem H
Exploring Delsjön
Olle likes to take walks in the woods around Delsjön. In the
woods, there are
He wonders if this information is enough to map out the
forest. Your task is to find a possible layout of the forest
that is consistent with Olle’s information, using at most
Input
The first line of input contains the integer
Then follow
It is guaranteed that the input is created such that there
always exists a layout where
Output
First, print an integer
Then, print
If your layout of Delsjön is consistent with the information given above and it is possible to travel between every pair of glades using one or more trails, it will be accepted.
Scoring
Your solution will be tested on a set of test groups, each worth a number of points. Each test group contains a set of test cases. To get the points for a test group you need to solve all test cases in the test group.
Group |
Points |
Constraints |
|
|
There is a solution with |
|
|
No additional constraints. |
Explanation of Sample 1
One possible way that Delsjön could look like is shown below:
![\includegraphics[width=0.2\textwidth ]{sample-1.png}](/problems/delsjon/file/statement/en/img-0001.png)
The black glades are exit glades. You can verify that the distances between each pair of exit glades matches those in the input.
Explanation of Sample 2
Given the distances of sample 2, Delsjön could look like what is shown below:
![\includegraphics[width=0.4\textwidth ]{sample-2.png}](/problems/delsjon/file/statement/en/img-0002.png)
Sample Input 1 | Sample Output 1 |
---|---|
3 0 2 3 2 0 3 3 3 0 |
5 2 4 4 1 3 5 5 4 |
Sample Input 2 | Sample Output 2 |
---|---|
4 0 5 5 5 5 0 2 4 5 2 0 4 5 4 4 0 |
9 2 5 5 6 6 7 7 8 8 1 3 5 4 9 9 6 |