#ABC183C. [ABC183C] Travel

[ABC183C] Travel

Score : 300300 points

Problem Statement

There are NN cities. The time it takes to travel from City ii to City jj is Ti,jT_{i, j}.

Among those paths that start at City 11, visit all other cities exactly once, and then go back to City 11, how many paths take the total time of exactly KK to travel along?

Constraints

  • 2N82\leq N \leq 8
  • If iji\neq j, 1Ti,j1081\leq T_{i,j} \leq 10^8.
  • Ti,i=0T_{i,i}=0
  • Ti,j=Tj,iT_{i,j}=T_{j,i}
  • 1K1091\leq K \leq 10^9
  • All values in input are integers.

Input

Input is given from Standard Input in the following format:

NN KK

T1,1T_{1,1} \ldots T1,NT_{1,N}

\vdots

TN,1T_{N,1} \ldots TN,NT_{N,N}

Output

Print the answer as an integer.

4 330
0 1 10 100
1 0 20 200
10 20 0 300
100 200 300 0
2

There are six paths that start at City 11, visit all other cities exactly once, and then go back to City 11:

  • 123411\to 2\to 3\to 4\to 1
  • 124311\to 2\to 4\to 3\to 1
  • 132411\to 3\to 2\to 4\to 1
  • 134211\to 3\to 4\to 2\to 1
  • 142311\to 4\to 2\to 3\to 1
  • 143211\to 4\to 3\to 2\to 1

The times it takes to travel along these paths are 421421, 511511, 330330, 511511, 330330, and 421421, respectively, among which two are exactly 330330.

5 5
0 1 1 1 1
1 0 1 1 1
1 1 0 1 1
1 1 1 0 1
1 1 1 1 0
24

In whatever order we visit the cities, it will take the total time of 55 to travel.