100 atcoder#ABC139E. [ABC139E] League
[ABC139E] League
Score : points
Problem Statement
players will participate in a tennis tournament. We will call them Player , Player , , Player .
The tournament is round-robin format, and there will be 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.
- Each player plays at most one matches in a day.
- Each player plays one match against Player in this order.
Constraints
- are all different.
Input
Input is given from Standard Input in the following format:
Output
If it is possible to schedule all the matches so that all of the conditions are satisfied, print the minimum number of days required; if it is impossible, print -1
.
3
2 3
1 3
1 2
3
All the conditions can be satisfied if the matches are scheduled for three days as follows:
- Day : Player vs Player
- Day : Player vs Player
- Day : Player vs Player
This is the minimum number of days required.
4
2 3 4
1 3 4
4 1 2
3 1 2
4
All the conditions can be satisfied if the matches are scheduled for four days as follows:
- Day : Player vs Player , Player vs Player
- Day : Player vs Player
- Day : Player vs Player , Player vs Player
- Day : Player vs Player
This is the minimum number of days required.
3
2 3
3 1
1 2
-1
Any scheduling of the matches violates some condition.