PivotOJ

Lexicographical Lecturing

시간 제한: 2000ms메모리 제한: 512MB출처: GCPC 2020BOJ 20912

문제

The OUG ("Ordered University of Germany") is a renowned German university. Since it has a lot of students, student IDs are quite long strings of equal length \ell, where each student ID only contains lowercase letters of the English alphabet. Unfortunately for the students, the university's president hates chaos and expects students to always enter lecture halls in ascending lexicographic order of their IDs. As you can imagine, the process of sorting themselves in front of the lecture hall takes quite a lot of time for the students. Georgina, a computer science student, has the following idea to accelerate this process: She plans to fix two integers i,ji,j with 1ij1 \leq i \leq j \leq \ell denoting a substring of the student ID starting at the iith letter and ending in the jjth letter. Students then sort themselves lexicographically with respect to this substring of their student ID. Of course, ii and jj must be chosen in a way such that this new ordering is equal to the lexicographic ordering with respect to their complete IDs. In order to make the process as fast as possible, the length of the substring should be minimal. Can you help Georgina to solve this problem?

입력

The input consists of:

  • One line with two integers nn and \ell, where
    • nn (2n5002 \leq n \leq 500) is the number of student IDs;
    • \ell (121041 \leq \ell \leq 2 \cdot 10^4) is the length of each student ID.
  • nn lines, the iith of which contains the student ID of the iith student.

All student IDs only contain lowercase letters of the English alphabet, they are pairwise distinct and appear in ascending lexicographic order.

출력

Output two integers denoting the indices of the first and last letter of the shortest substring so that when students sort themselves lexicographically with respect to this substring of their student ID, the same order establishes as if students sorted themselves lexicographically with respect to their complete student ID.

If there are multiple shortest substrings, you may output any one of them.

예제

예제 1

입력
4 6
aaaaaa
aaabbb
aaacaa
aaacac
출력
4 6

예제 2

입력
3 5
cccca
ccgda
ccgia
출력
4 4
이 문제는 채점 준비 중입니다. 테스트 데이터가 확보되면 제출이 가능합니다.