FN16CEIL - Ceiling Function

no tags 

Advanced Ceiling Manufacturers (ACM) is analyzing the properties of its new series of Incredibly Collapse-Proof Ceilings (ICPCs). An ICPC consists of $n$ layers of material, each with a different value of collapse resistance (measured as a positive integer). The analysis ACM wants to run will take the collapse-resistance values of the layers, store them in a binary search tree, and check whether the shape of this tree in any way correlates with the quality of the whole construction. Because, well, why should it not?

To be precise, ACM takes the collapse-resistance values for the layers, ordered from the top layer to the bottom layer, and inserts them one-by-one into a tree. The rules for inserting a value $v$ are:

  • If the tree is empty, make $v$ the root of the tree.

  • If the tree is not empty, compare $v$ with the root of the tree. If $v$ is smaller, insert $v$ into the left subtree of the root, otherwise insert $v$ into the right subtree.

ACM has a set of ceiling prototypes it wants to analyze by trying to collapse them. It wants to take each group of ceiling prototypes that have trees of the same shape and analyze them together.

Given a set of prototypes, your task is to determine how many different tree shapes they induce.

Input

Multiple test cases. Please process until EOF is reached. For each test case:

The first line contains two integers $n$ ( $1 \le n \le 50$), which is the number of ceiling prototypes to analyze, and $k$ ($1 \le k \le 20$), which is the number of layers in each of the prototypes.

The next $n$ lines describe the ceiling prototypes. Each of these lines contains $k$ distinct integers (between $1$ and $10^6$, inclusive), which are the collapse-resistance values of the layers in a ceiling prototype, ordered from top to bottom.

Output

For each test case, display the number of different tree shapes.

Example

Input:
5 3
2 7 1
3 1 4
1 5 9
2 6 5
9 7 3
3 4
3 1 2 40000
3 4 2 1
33 42 17 23

Output:
4
2

hide comments
:D: 2016-09-15 21:34:54

It's important to add that tree shapes T1 and T2 are the same iff:
(Both T1 and T2 are empty) OR
((left subtree of T1 has the same shape as the left subtree of T2) AND (right subtree of T1 has the same shape as the right subtree of T2))

Last edit: 2016-10-10 16:11:43

Added by:Fudan University Problem Setters
Date:2016-05-20
Time limit:1s
Source limit:50000B
Memory limit:1536MB
Cluster: Cube (Intel G860)
Languages:All except: ASM64 GOSU JS-MONKEY
Resource:ACM/ICPC World Finals 2016