KFSTB - Help the Commander in Chief


The Country of byteland is in a state of war with its neighboring nation bitland which is a small island. The king of byteland needs to send his soldiers across the sea to attack bitland. It is not easy for bytelandian soldiers to cross the sea between the two countries as there are soldiers of bitland who are constantly on patrol.

But, The commander of byteland through his secret sources has gathered some information about the camping spots in between, It is as follows. There are C camping spots in the sea between the two countries. There are B one way bridges, each bridge is between two camps. Bytelandian army can use these bridges without any danger of being attacked. The commander also knows that if the army leaves a camping spot along a bridge safely it is not possible to return back safely to the same camping spot.

The camping spot closest to the bytelandian shore is S and the camping spot closest to the bitlandian shore is T. The commander in chief of byteland wants to formulate a strategy for the army to safely move from the camping spot S to T. You have been assigned the task of finding the number of possible paths that a soldier could follow from camping spot S to T.

Input

The first line of input contains the number of test cases D. For each test case the first line contains C, B, S and T number of camping spots, number of one way bridges, camping spot close to byteland and camping spot close to bitland respectively. The next B lines contain description of bridges. Each bridge is described on a single line by two integers X and Y denoting the starting and ending point of a bridge.

Output

In each line print the number of possible paths modulo 1000000007

Sample Input

2
4 4 1 4
1 2
1 3
2 4
3 4
5 5 1 5
1 2
2 3
2 4
3 5
4 5

Sample Output

2
2

Constraints

1<= D <= 10
1<= C <= 10000
1<= B <= 10000
1 <= X,Y <= C
1 <= S,T <= C


hide comments
sandeepd: 2016-10-13 20:20:26

The #dfs tag for this problem is almost misleading! It is actually memoization + general intuition! :P

Last edit: 2016-10-13 20:22:40
Ram: 2016-04-04 19:50:05

In python if you are getting NZEC error, try to increase recursion limit (for DP top-down).

Praveen Gajulapalli: 2016-03-09 20:33:08

Problem description should say that the graph is a DAG

aditya730: 2016-01-21 12:19:45

Think the problem description could've conveyed that the graph will be a DAG.That's crucial for solving this problem

Projjal Kundu: 2015-12-14 15:58:38

Reverse Topological sort + DP

Deeksha: 2015-06-28 18:45:09

Using dfs.. but i keep getting TLE :(
can anyone suggest something..

Shivam Pahuja: 2015-05-21 07:49:03

Combination of DFS and DP can solve the problem , Don't forget to consider corner case when source is same as destination :)

Ankit Sultana: 2015-01-28 06:00:43

'One Way Bridges'!!! Don't Miss that

npsabari: 2012-10-05 21:15:52

DAG is the important hint!


Added by:rizwan hudda
Date:2012-09-04
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:Kodefest 2012 IITK - Own problem