Running Away
You are trying to run away from the police after stealing all of the MAPS prize money. The police begin at location 1 on day 0 and MUST move to an adjacent location at the end of each day. On day
Input
The first line contains integers
Output
Output the number of locations which are garunteed to not contain police.
Contraints
Example 1
In
Copy
10 12 3
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
7 7
4 6
3 8
Out
Copy
7
Example 2
In
Copy
20 22 11
1 2
2 3
3 4
4 5
5 6
6 7
7 8
8 9
9 10
10 11
11 12
12 13
13 14
14 15
15 16
16 17
17 18
18 19
19 20
17 15
9 1
15 19
Out
Copy
10
Comments