Problem C
Raging River

Sally and her friends are trying to cross safely from one bank of a raging river to another. Boulders are scattered within the river, with log planks connecting the banks of the river to some of the boulders, and some pairs of boulders to each other.
Sally begins by trying to cross the river first. She starts at the left bank and crosses one plank at a time, with the goal of reaching the right bank. Walking across a plank takes Sally one second. Each time she crosses a plank, that plank becomes unstable and collapses into the river (so that neither Sally nor her friends can use that plank again). After Sally has safely reached the right bank, another friend tries to cross the river, and so on, until everyone who is able to make it has crossed the river.
Given the graph of banks/boulders and planks and the number
of people who need the cross the river, what is the smallest
amount of total time (in seconds) required for everyone to
cross the river safely? If it is impossible for all people to
cross, compute the minimum number of people
Input
The first line of the input contains three integers
Then follows
You may assume that every log has two distinct endpoints, and that no two logs span the same pair of boulders/river banks. There is no guarantee that every boulder, or even the right river bank, is reachable from the left river bank.
Output
If it is possible for all
If some people must be left behind at the left bank, instead
print n people left behind, where the
integer
Sample Input 1 | Sample Output 1 |
---|---|
2 4 7 -2 0 0 -1 -2 1 1 0 2 1 2 3 3 -1 |
6 |
Sample Input 2 | Sample Output 2 |
---|---|
3 2 5 -2 0 -2 1 0 1 1 -1 0 -1 |
1 people left behind |