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 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.
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 |
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.
How to compete in ACM ICPC | 1 |
How to win ACM ICPC | 2 |
Notes from ACM ICPC champion | 2 |
1 | Peter | peter@neerc.ifmo.ru |
2 | Michael | michael@neerc.ifmo.ru |
Given a table your task is to figure out whether it is in PNF or not.