eolymp
bolt
Спробуйте наш новий інтерфейс для відправки розв'язків
Задачі

Database

Database

Peter studies the theory of relational databases. Table in the relational database consists of values that are arranged in rows and columns. There are different \textit{normal forms }that database may adhere to. Normal forms are designed to minimize the redundancy of data in the database. For example, a database table for a library might have a row for each book and columns for book name, book author, and author's email. If the same author wrote several books, then this representation is clearly redundant. To formally define this kind of redundancy Peter has introduced his own normal form. A table is in Peter's Normal Form (PNF) if and only if there is no pair of rows and a pair of columns such that the values in the corresponding columns are the same for both rows. The above table is clearly not in PNF, since values for 2rd and 3rd columns repeat in 2nd and 3rd rows. However, if we introduce unique author identifier and split this table into two tables -- one containing book name and author id, and the other containing book id, author name, and author email, then both resulting tables will be in PNF. Given a table your task is to figure out whether it is in PNF or not. \InputFile The first line of the input file contains two integer numbers \textit{n }and \textit{m }(1 <=\textit{ n }<=\textit{ }10 000, 1 <=\textit{ m }<=\textit{ }10), the number of rows and columns in the table. The following \textit{n }lines contain table rows. Each row has \textit{m }column values separated by commas. Column values consist of ASCII characters from space (ASCII code 32) to tilde (ASCII code 126) with the exception of comma (ASCII code 44). Values are not empty and have no leading and trailing spaces. Each row has at most 80 characters (including separating commas). \OutputFile If the table is in PNF write to the output file a single word ”YES” (without quotes). If the table is not in PNF, then write three lines. On the first line write a single word ”NO” (without quotes). On the second line write two integer row numbers \textit{r}_1 and \textit{r}_2 (1 <=\textit{ r}_1, \textit{r}_2 <=\textit{ n}, \textit{r}_1 ≠ \textit{r}_2), on the third line write two integer column numbers \textit{c}_1 and \textit{c}_2 (1 <=\textit{ c}_1, \textit{c}_2 <=\textit{ m}, \textit{c}_1 ≠ \textit{c}_2), so that values in columns \textit{c}_1 and \textit{c}_2 are the same in rows \textit{r}_1 and \textit{r}_2.
Ліміт часу 1 секунда
Ліміт використання пам'яті 64 MiB
Вхідні дані #1
3 3
How to compete in ACM ICPC,Peter,peter@neerc.ifmo.ru
How to win ACM ICPC,Michael,michael@neerc.ifmo.ru
Notes from ACM ICPC champion,Michael,michael@neerc.ifmo.ru
Вихідні дані #1
NO
2 3
2 3
Автор Roman Elizarov