広島大学 先進理工系科学研究科 情報科学プログラム 2021年1月実施 専門科目I 問題4
Author
samparker, 祭音Myyura
Description
地点 電力網を構築することを考える。 図1に示したグラフ の各頂点(vertex)は地点 のいずれかに対応し、各辺(edge)はその両端に対応する2地点間に電力線が設置可能であることを示し、各辺に添えられた数字はその費用を示す。 以下の設問に答えよ。
(1) グラフ に関して または を要素とする隣接行列(adjacency matrix) とそれに対応するラプラシアン行列(Laplacian matrix) を示せ。
(2) グラフ のスパニング木(spanning tree)は、各地点を一度だけ通り、かつ、閉路(cycle)のないような連結した電力網に対応する。 そのような異なるスパニング木が何通りあるか示せ。 ただし、根拠も示せ。
(3) 前問(2)のうち、最も費用のかからないスパニング木を見つけてその総費用を示せ。
Suppose we want to lay out an electric power grid to connect locations . In Graph shown in Figure 1, each vertex corresponds to one of the locations , and each edge represents that an electric power line is possible to construct between the locations at the endpoints of the edge, with which the digit indicates its cost. Answer the following questions:
(1) Show the adjacency matrix where each element is or and the corresponding Laplacian matrix of Graph .
(2) A spanning tree of Graph can be defined as a connected electric power grid that visits each location exactly once, not forming a cycle. Show how many different spanning trees are possible for Graph . Also state the reasons for your answer.
(3) Out of the possible spanning trees considered in Question (2) above, find the one with the least total cost and show that total cost.
図 1 Figure 1
题目描述
现要在地点 至 之间建设电力网。图 1 的图 中,每个顶点对应地点 之一;每条边表示可在其两个端点对应地点之间铺设电力线,边旁数字表示建设费用。
- 写出图 的 - 邻接矩阵 及相应的拉普拉斯矩阵 。
- 图 的生成树对应一个连通且无环、覆盖所有地点的电力网。求不同生成树的总数,并说明依据。
- 在第 2 问的所有生成树中找出总费用最低的一棵,并给出其总费用。
图的顶点、边及各边费用均见图 1。
考点
- 最小生成树:由图的邻接与拉普拉斯矩阵统计生成树数量,并在带权图中选出总费用最小的生成树。
Kai
(1)
Adjacent matrix
Degree Matrix
Laplacian matrix
(2)
Kirchhoff's matrix tree theorem: The number of spanning trees in a graph is given by , for any .
Therefore, there are different spanning trees in graph .
(3)
A minimum spanning tree of is , whose cost is .