{"raw_statement":[{"iden":"problem statement","content":"$N$ players will participate in a tennis tournament. We will call them Player $1$, Player $2$, $\\ldots$, Player $N$.\nThe tournament is round-robin format, and there will be $N(N-1)/2$ matches in total. Is it possible to schedule these matches so that all of the following conditions are satisfied? If the answer is yes, also find the minimum number of days required.\n\n*   Each player plays at most one matches in a day.\n*   Each player $i$ $(1 \\leq i \\leq N)$ plays one match against Player $A_{i, 1}, A_{i, 2}, \\ldots, A_{i, N-1}$ in this order."},{"iden":"constraints","content":"*   $3 \\leq N \\leq 1000$\n*   $1 \\leq A_{i, j} \\leq N$\n*   $A_{i, j} \\neq i$\n*   $A_{i, 1}, A_{i, 2}, \\ldots, A_{i, N-1}$ are all different."},{"iden":"input","content":"Input is given from Standard Input in the following format:\n\n$N$\n$A_{1, 1}$ $A_{1, 2}$ $\\ldots$ $A_{1, N-1}$\n$A_{2, 1}$ $A_{2, 2}$ $\\ldots$ $A_{2, N-1}$\n$:$\n$A_{N, 1}$ $A_{N, 2}$ $\\ldots$ $A_{N, N-1}$"},{"iden":"sample input 1","content":"3\n2 3\n1 3\n1 2"},{"iden":"sample output 1","content":"3\n\nAll the conditions can be satisfied if the matches are scheduled for three days as follows:\n\n*   Day $1$: Player $1$ vs Player $2$\n*   Day $2$: Player $1$ vs Player $3$\n*   Day $3$: Player $2$ vs Player $3$\n\nThis is the minimum number of days required."},{"iden":"sample input 2","content":"4\n2 3 4\n1 3 4\n4 1 2\n3 1 2"},{"iden":"sample output 2","content":"4\n\nAll the conditions can be satisfied if the matches are scheduled for four days as follows:\n\n*   Day $1$: Player $1$ vs Player $2$, Player $3$ vs Player $4$\n*   Day $2$: Player $1$ vs Player $3$\n*   Day $3$: Player $1$ vs Player $4$, Player $2$ vs Player $3$\n*   Day $4$: Player $2$ vs Player $4$\n\nThis is the minimum number of days required."},{"iden":"sample input 3","content":"3\n2 3\n3 1\n1 2"},{"iden":"sample output 3","content":"\\-1\n\nAny scheduling of the matches violates some condition."}],"translated_statement":null,"sample_group":[],"show_order":["default"],"formal_statement":null,"simple_statement":null,"has_page_source":true}