6 8 5 1 4 3 1 4 3 5 1 2 2 6 1 6 4 2
1 4 4 3 5 3 4 2 6 2 1 5 5 3 1 4 2 1 1 6 In the Sample Output above, $T_1$ is a spanning tree of $G$ containing $5$ edges $\lbrace 1, 4 \rbrace, \lbrace 4, 3 \rbrace, \lbrace 5, 3 \rbrace, \lbrace 4, 2 \rbrace, \lbrace 6, 2 \rbrace$. This $T_1$ satisfies the condition in the Problem Statement. Indeed, for each edge of $G$ not contained in $T_1$: * for edge $\lbrace 5, 1 \rbrace$, Vertex $1$ is an ancestor of $5$; * for edge $\lbrace 1, 2 \rbrace$, Vertex $1$ is an ancestor of $2$; * for edge $\lbrace 1, 6 \rbrace$, Vertex $1$ is an ancestor of $6$. $T_2$ is another spanning tree of $G$ containing $5$ edges $\lbrace 1, 5 \rbrace, \lbrace 5, 3 \rbrace, \lbrace 1, 4 \rbrace, \lbrace 2, 1 \rbrace, \lbrace 1, 6 \rbrace$. This $T_2$ satisfies the condition in the Problem Statement. Indeed, for each edge of $G$ not contained in $T_2$: * for edge $\lbrace 4, 3 \rbrace$, Vertex $4$ is not an ancestor of Vertex $3$, and vice versa; * for edge $\lbrace 2, 6 \rbrace$, Vertex $2$ is not an ancestor of Vertex $6$, and vice versa; * for edge $\lbrace 4, 2 \rbrace$, Vertex $4$ is not an ancestor of Vertex $2$, and vice versa.
4 3 3 1 1 2 1 4
1 2 1 3 1 4 1 4 1 3 1 2 Tree $T$, containing $3$ edges $\lbrace 1, 2\rbrace, \lbrace 1, 3 \rbrace, \lbrace 1, 4 \rbrace$, is the only spanning tree of $G$. Since there are no edges of $G$ that are not contained in $T$, obviously this $T$ satisfies the conditions for both $T_1$ and $T_2$.
{
"problem": {
"name": "Two Spanning Trees",
"description": {
"content": "You are given an undirected graph $G$ with $N$ vertices and $M$ edges. $G$ is **simple** (it has no self-loops and multiple edges) and **connected**. For $i = 1, 2, \\ldots, M$, the $i$\\-th edge is an ",
"description_type": "Markdown"
},
"platform": "AtCoder",
"limit": {
"time_limit": 2000,
"memory_limit": 262144
},
"difficulty": "None",
"is_remote": true,
"is_sync": true,
"sync_url": null,
"sign": "abc251_f"
},
"statements": [
{
"statement_type": "Markdown",
"content": "You are given an undirected graph $G$ with $N$ vertices and $M$ edges. $G$ is **simple** (it has no self-loops and multiple edges) and **connected**.\nFor $i = 1, 2, \\ldots, M$, the $i$\\-th edge is an ...",
"is_translate": false,
"language": "English"
}
]
}