COCI '18 Contest 5 #3 Ispit

View as PDF

Submit solution

Points: 7 (partial)
Time limit: 1.0s
Memory limit: 64M

Problem type

After 26 years of studying, little Mirko took his potentially last exam. He confidently took his seat, sharpened his pencil and waited calmly for the professor's permission to start writing – after all, that was his favorite subject, Data Structures and Algorithms. But, as in any good story, this one also has that but… Namely, when he got his exam, Mirko could not even comprehend what was written in it.

He only saw a meaningless matrix of letters with N rows and N columns.

Since the professor forbids leaving the classroom during the exam, Mirko decided to spend 2 hours coming up with his own task. Mirko was wondering if it is possible to select K consecutive columns of the matrix so that, after arbitrarily shuffling letters in the K selected columns' rows, there are two equal rows in the matrix (note that the entire rows must be equal, not just their letters in the selected columns). Shuffling is allowed only inside of the same row within selected columns and it is possible that a row remains unchanged after such operation.

Can you solve Mirko's task?

Input

In the first line of the input there are two integer numbers N and K (2 \le K \le N \le 500).

The following N rows contain N lowercase letters of the English alphabet describing the matrix of the letters Mirko saw in the exam.

Output

Print DA (Croatian for yes) if it is possible to select the K consecutive columns that meet the conditions of the task. Otherwise print NE (Croatian for no).

Scoring

In the test samples totally worth 30% of the points, it will hold N \le 10.

In the test samples totally worth additional 40% of the points, it will hold N \le 200.

Sample Input 1

4 2
abcd
acbd
enaa
moze

Sample Output 1

DA

Explanation for Sample Output 1

E.g. we can choose columns 2 and 3 and change the matrix so that it looks like this (we can choose not to change the first row and swap 2^{nd} and 3^{rd} letters in other rows):

abcd
abcd
eana
mzoe

It is clear that the first and the second row are the same, thus satisfying the task condition.

Sample Input 2

2 2
aa
aa

Sample Output 2

DA

Sample Input 3

3 2
nec
uuc
iti

Sample Output 3

NE

Comments

There are no comments at the moment.