CF238E.Meeting Her
普及/提高-
通过率:0%
AC君温馨提醒
该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。
题目描述
Urpal lives in a big city. He has planned to meet his lover tonight.
The city has n junctions numbered from 1 to n . The junctions are connected by m directed streets, all the roads have equal length. Urpal lives in junction a and the date is planned in a restaurant in junction b . He wants to use public transportation to get to junction b . There are k bus transportation companies. At the beginning of every second, a bus from the i -th company chooses a random shortest path between junction si and junction ti and passes through it. There might be no path from si to ti . In that case no bus will leave from si to ti . If a bus passes through a junction where Urpal stands, he can get on the bus. He can also get off the bus at any junction along the path.
Now Urpal wants to know if it's possible to go to the date using public transportation in a finite amount of time (the time of travel is the sum of length of the traveled roads) and what is the minimum number of buses he should take in the worst case.
At any moment Urpal knows only his own position and the place where the date will be. When he gets on the bus he knows only the index of the company of this bus. Of course Urpal knows the city map and the the pairs (si,ti) for each company.
Note that Urpal doesn't know buses velocity.
输入格式
The first line of the input contains four integers n , m , a , b (2<=n<=100; 0<=m<=n⋅(n−1); 1<=a,b<=n; a=b) .
The next m lines contain two integers each ui and vi (1<=ui,vi<=n; ui=vi) describing a directed road from junction ui to junction vi . All roads in the input will be distinct.
The next line contains an integer k (0<=k<=100) . There will be k lines after this, each containing two integers si and ti (1<=si,ti<=n; si=ti) saying there is a bus route starting at si and ending at ti . Please note that there might be no path from si to ti , this case is described in the problem statement.
输出格式
In the only line of output print the minimum number of buses Urpal should get on on his way in the worst case. If it's not possible to reach the destination in the worst case print -1.
输入输出样例
输入#1
7 8 1 7 1 2 1 3 2 4 3 4 4 6 4 5 6 7 5 7 3 2 7 1 4 5 7
输出#1
2
输入#2
4 4 1 2 1 2 1 3 2 4 3 4 1 1 4
输出#2
-1