In a tennis club, each member has exactly $k > 0$ friends, and a tournament is organized in rounds such that each pair of friends faces each other in matches exactly once. Rounds are played in simultaneous matches, choosing pairs until they cannot choose any more (that is, among the unchosen people, there is not a pair of friends which has its match pending). Determine the maximum number of rounds the tournament can have, depending on $k$.
Problem
Source: Cono Sur 2021 P3
Tags: combinatorics
Rabbids124
01.12.2021 01:40
how many members does the club have?
mijail
02.12.2021 19:46
My answer is $2k-1$.
Suppose there are at least $2k$ rounds then in the last round we match two friends who were never paired before, this means that in each previous round at least one of them was paired with someone else (who is not the friend in the last round) then before this there were at most $(k-1) + (k-1)$ rounds so there are at most $2k-1$ rounds (adding the last round).
For the example we see it as a graph:
Take two vertices $ A $, $ B $ where $ A $ is joined to $ v_1 \dots v_k $ and $ B $ is joined to $ u_1 \dots u_k $ where the $2k + 2$ vertices are different two by two, and also each $ u_i $ is linked with $ v_j $ where $ j, i $ are different. Then take the first $ k-1 $ rounds for the edges between $ u_i, v_{i + t} $ with $t$ is the number of the round ($t = 1, \dots, k-1$), now for the last $ k $ rounds only take in each round the edges $ Av_i $ and $ Bu_i $. This is correct?