Browse · MathNet
PrintSELECTION and TRAINING SESSION
Belarus counting and probability
Problem
There are cities in a country. Some pairs of cities are connected with an air communication, and for any such pair the connection is mutual. It is possible to travel from one city to another (possibly with a couple of flights). It is also known that the minimal number of flights that are needed to travel from any given city to another doesn't exceed the same number , and for any city there exists another city which cannot be reached from by less than flights. Given , find all possible values of , for which it is possible. (Aliaksei Vaidzelevich)
Solution
Answer: .
We reformulate the problem in the language of Graph Theory. Consider a graph, the vertices of which correspond to cities and the edges correspond to air connections. It is given that the graph is connected and the eccentricity of all of its vertices (the greatest of the minimal distances from it to other vertices) equals its radius (number ). We will show that the radius of a graph on vertices can't be greater than , which will imply that .
Start the process of deleting edges in the graph one by one, preserving the connectivity of it, as long as possible. We will end with a tree. For a tree on vertices, the maximal length of a chain doesn't exceed edge, hence, it is possible to reach any vertex from a central one (or from two central ones) by steps, which implies that the radius of the tree doesn't exceed . It is left to note that the radius doesn't decrease when deleting edges, so our claim is proved.
Consider now any number . Take a cycle of length , whose radius clearly equals . Choose a vertex of a cycle and create copies of it, each of which is connected only to both neighbours of . Then draw an edge between any pairs of copies of , and connect with all of them. Clearly, the constructed graph satisfies the problem's conditions.
We reformulate the problem in the language of Graph Theory. Consider a graph, the vertices of which correspond to cities and the edges correspond to air connections. It is given that the graph is connected and the eccentricity of all of its vertices (the greatest of the minimal distances from it to other vertices) equals its radius (number ). We will show that the radius of a graph on vertices can't be greater than , which will imply that .
Start the process of deleting edges in the graph one by one, preserving the connectivity of it, as long as possible. We will end with a tree. For a tree on vertices, the maximal length of a chain doesn't exceed edge, hence, it is possible to reach any vertex from a central one (or from two central ones) by steps, which implies that the radius of the tree doesn't exceed . It is left to note that the radius doesn't decrease when deleting edges, so our claim is proved.
Consider now any number . Take a cycle of length , whose radius clearly equals . Choose a vertex of a cycle and create copies of it, each of which is connected only to both neighbours of . Then draw an edge between any pairs of copies of , and connect with all of them. Clearly, the constructed graph satisfies the problem's conditions.
Final answer
all integers m with 1 ≤ m ≤ floor(n/2)
Techniques
Graph Theory