|
||||||||||
PermutationTime Limit: 6000/3000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others)Total Submission(s): 687 Accepted Submission(s): 328 Problem Description In combinatorics a permutation of a set S with N elements is a listing of the elements of S in some order (each element occurring exactly once). There are N! permutations of a set which has N elements. For example, there are six permutations of the set {1,2,3}, namely [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], and [3,2,1]. But Bob think that some permutations are more beautiful than others. Bob write some pairs of integers(Ai, Bi) to distinguish beautiful permutations from ordinary ones. A permutation is considered beautiful if and only if for some i the Ai-th element of it is Bi. We want to know how many permutations of set {1, 2, ...., N} are beautiful. Input The first line contains an integer T indicating the number of test cases. There are two integers N and M in the first line of each test case. M lines follow, the i-th line contains two integers Ai and Bi. Technical Specification 1. 1 <= T <= 50 2. 1 <= N <= 17 3. 1 <= M <= N*N 4. 1 <= Ai, Bi <= N Output For each test case, output the case number first. Then output the number of beautiful permutations in a line. Sample Input
Sample Output
Author hanshuai Source | ||||||||||
|