正方形四角四城
What is the shape of the road?
题目详情
有四座城镇位于一个正方形的四个顶点。要修建道路系统把四城连通,使总道路长度最小。
问:最优道路网络是什么形状?
英文原题
There are four towns positioned on the corners of a square.The towns are to be joined by a system ofroads such that the total road length is minimized.What is the shape of the road?
解析
最优不是直接连边或“十字”,而是 Steiner 最小树:
- 在正方形内部引入 2 个 Steiner 点;
- 每个 Steiner 点连接两座相邻城镇,并且两个 Steiner 点之间也相连;
- 在 Steiner 点处三条道路两两夹角均为 。
该网络呈对称的“双 Y”形结构,且比沿边连接(总长 )更短(其中 为正方形边长)。
英文解析
The optimal solution is not a direct edge or a "cross," but rather a Steiner minimal tree:
- Introduce 2 Steiner points inside the square;
- Each Steiner point connects to two adjacent towns, and the two Steiner points are also connected to each other;
- At each Steiner point, the three roads meet at angles of to each other.
This network forms a symmetric "double Y" structure and is shorter than connecting along the edges (total length , where is the side length of the square).