SRTMACH - Sorting Machine

no tags 

Once upon a time, there was a machine, a sorting machine called Conchita, she was not very efficient, most of the times she even couldn't sort the data correctly, and she only could process a list of 2N102 \le N \le 10 numbers, her algorithm was the following, she was programmed with 2 permutations of NN numbers, each permutation FF is given by NN numbers, f1,f2,,fNf_1, f_2, \ldots, f_N, such that 1fiN1 \le f_i \le N, fifjf_i \ne f_j for iji \ne j and means that if she apply FF to the given list, she gets a list where the fif_i element, corresponds to the ii element on the original list, then she forms a set of rearrangements of the original list, applying any of these permutations any number of times, in any order to the given list, so she forms all possible rearrangements using the given permutations, then she chooses to output the one that minimize the first element, if there is any tie, she chooses the one that minimize the second element and if there is any tie, she looks at the third element, and so on...

Her creator, a robot called Robotina, was very curious about Conchita's behavior, she chooses an integer 1M101 \le M \le 10, an then she tries all possible lists, a1,a2,,aNa_1, a_2, \ldots, a_N, such that 1aiM1 \le a_i \le M, and then for each input, she sends it to Conchita, and receives an output, then she asks herself, how many possible different outputs does Conchita can compute? (Two outputs are considered different if at least one element differs).

Your task, find this number MOD 9876543198765431.

Input

The first line of input contains an integer T10T \le 10, the number of test cases. It is followed by TT test cases, the first line of each test case contains 2 integer numbers, NN, MM, then is followed by 2 lines, each one consisting on NN numbers.

Output

For each case, output a single line consisting of the number of different outputs MOD 9876543198765431.

Input Sample

2
2 2
1 2
2 1
3 3
2 1 3
3 1 2

Output sample

3
10

hide comments
khanhtai: 2024-02-26 14:58:01

can someone tell me how to solve this problem?

Min_25: 2015-12-11 09:28:47

I assumed that (list) ∈ [1, M]^n.

So, I'm not sure whether the clarification (ii)-(iv) by Bjarki Ágúst Guðmundsson are correct or not.

Bjarki Ágúst Guðmundsson: 2015-10-14 04:27:22

The problem description is pretty hard to understand. Here are a few clarifications:
- As mentioned by others, K should be 2.
- N <= M
- The second list (the one of length M) is not a permutation, but any list of size M with elements from the set 1..M.
- When applying a permutation of length N to a list of length M, where M > N, the last M-N elements are unchanged.

Regarding the example output, the 3 possible output lists in the first case are:
1 1
1 2
2 2

And the 10 possible output lists in the second case are:
1 1 1
1 1 2
1 1 3
1 2 2
1 2 3
1 3 3
2 2 2
2 2 3
2 3 3
3 3 3

Narendra yadav: 2013-04-07 16:09:26

Pl explain the cases.
how its coming 3 and 10.

Jared Deckard: 2012-02-14 20:36:37

messy...
i<=M & i<=N, M=N?
K=2 (2 preprogrammed permutations)

Last edit: 2012-02-14 20:40:11
manowar: 2012-02-08 15:53:39

K is a mistake, K =2 should be read

Suit up!: 2012-02-08 15:06:05

What is K in the input description?


Added by:Paulo Costa
Date:2012-01-30
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64
Resource:UGTO