H. Highways

Codeforces
IDCF10020H
Time1000ms
Memory64MB
Difficulty
English · Original
Formal · Original
The island nation of Flatopia is perfectly flat. Unfortunately, Flatopia has a very poor system of public highways. The Flatopian government is aware of this problem and has already constructed a number of highways connecting some of the most important towns. However, there are still some towns that you can't reach via a highway. It is necessary to build more highways so that it will be possible to drive between any pair of towns without leaving the highway system. Flatopian towns are numbered from 1 to N and town i has a position given by the Cartesian coordinates (xi, yi). Each highway connects exactly two towns. All highways (both the original ones and the ones that are to be built) follow straight lines, and thus their length is equal to Cartesian distance between towns. All highways can be used in both directions. Highways can freely cross each other, but a driver can only switch between highways at a town that is located at the end of both highways. The Flatopian government wants to minimize the cost of building new highways. However, they want to guarantee that every town is highway-reachable from every other town. Since Flatopia is so flat, the cost of a highway is always proportional to its length. Thus, the least expensive highway system will be the one that minimizes the total highways length. The input consists of two parts. The first part describes all towns in the country, and the second part describes all of the highways that have already been built. The first line of the input contains a single integer N (1 ≤ N ≤ 750), representing the number of towns. The next N lines each contain two integers, xi and yi separated by a space. These values give the coordinates of ith town (for i from 1 to N). Coordinates will have an absolute value no greater than 10000. Every town has a unique location. The next line contains a single integer M (0 ≤ M ≤ 1000), representing the number of existing highways. The next M lines each contain a pair of integers separated by a space. These two integers give a pair of town numbers which are already connected by a highway. Each pair of towns is connected by at most one direct highway. Write to the standard output a single line for each new highway that should be built in order to connect all towns with minimal possible total length of new highways. Each highway should be presented by printing town numbers that this highway connects, separated by a space. If no new highways need to be built (all towns are already connected), then the output should be empty. ## Input The input consists of two parts. The first part describes all towns in the country, and the second part describes all of the highways that have already been built.The first line of the input contains a single integer N (1 ≤ N ≤ 750), representing the number of towns. The next N lines each contain two integers, xi and yi separated by a space. These values give the coordinates of ith town (for i from 1 to N). Coordinates will have an absolute value no greater than 10000. Every town has a unique location.The next line contains a single integer M (0 ≤ M ≤ 1000), representing the number of existing highways. The next M lines each contain a pair of integers separated by a space. These two integers give a pair of town numbers which are already connected by a highway. Each pair of towns is connected by at most one direct highway. ## Output Write to the standard output a single line for each new highway that should be built in order to connect all towns with minimal possible total length of new highways. Each highway should be presented by printing town numbers that this highway connects, separated by a space.If no new highways need to be built (all towns are already connected), then the output should be empty. [samples]
**Definitions** Let $ N \in \mathbb{Z}^+ $ be the number of towns. Let $ T = \{t_1, t_2, \dots, t_N\} $ be the set of towns, where each town $ t_i $ has Cartesian coordinates $ (x_i, y_i) \in \mathbb{R}^2 $. Let $ G = (T, E_{\text{existing}}) $ be the undirected graph representing existing highways, where $ E_{\text{existing}} \subseteq T \times T $ is the set of already constructed edges. Let $ d(t_i, t_j) = \sqrt{(x_i - x_j)^2 + (y_i - y_j)^2} $ be the Euclidean distance between towns $ t_i $ and $ t_j $. **Constraints** 1. $ 1 \leq N \leq 750 $ 2. $ 0 \leq M \leq 1000 $ 3. $ |x_i|, |y_i| \leq 10000 $ for all $ i \in \{1, \dots, N\} $ 4. All town coordinates are distinct. 5. Each existing highway is an unordered pair $ \{t_i, t_j\} \in E_{\text{existing}} $, with no duplicates. **Objective** Find a minimum-weight spanning tree $ T^* = (T, E^*) $ of the complete graph $ K_N $ with edge weights $ d(t_i, t_j) $, such that $ E_{\text{existing}} \subseteq E^* $, and output the set $ E^* \setminus E_{\text{existing}} $ — the set of new highways to be built. If $ E^* = E_{\text{existing}} $, output nothing.
API Response (JSON)
{
  "problem": {
    "name": "H. Highways",
    "description": {
      "content": "The island nation of Flatopia is perfectly flat. Unfortunately, Flatopia has a very poor system of public highways. The Flatopian government is aware of this problem and has already constructed a numb",
      "description_type": "Markdown"
    },
    "platform": "Codeforces",
    "limit": {
      "time_limit": 1000,
      "memory_limit": 65536
    },
    "difficulty": "None",
    "is_remote": true,
    "is_sync": true,
    "sync_url": null,
    "sign": "CF10020H"
  },
  "statements": [
    {
      "statement_type": "Markdown",
      "content": "The island nation of Flatopia is perfectly flat. Unfortunately, Flatopia has a very poor system of public highways. The Flatopian government is aware of this problem and has already constructed a numb...",
      "is_translate": false,
      "language": "English"
    },
    {
      "statement_type": "Markdown",
      "content": "**Definitions**  \nLet $ N \\in \\mathbb{Z}^+ $ be the number of towns.  \nLet $ T = \\{t_1, t_2, \\dots, t_N\\} $ be the set of towns, where each town $ t_i $ has Cartesian coordinates $ (x_i, y_i) \\in \\mat...",
      "is_translate": false,
      "language": "Formal"
    }
  ]
}
Full JSON Raw Segments