A12283 | Lunar New Year and a Wander
时间限制1s
内存限制256MB
通过 / 提交0/0
题目描述
Lunar New Year is approaching, and Bob decides to take a wander in a nearby park.
The park can be represented as a connected graph with $n$ nodes and $m$ bidirectional edges. Initially Bob is at the node $1$ and he records $1$ on his notebook. He can wander from one node to another through those bidirectional edges. Whenever he visits a node not recorded on his notebook, he records it. After he visits all nodes at least once, he stops wandering, thus finally a permutation of nodes $a_1, a_2, \ldots, a_n$ is recorded.
Wandering is a boring thing, but solving problems is fascinating. Bob wants to know the lexicographically smallest sequence of nodes he can record while wandering. Bob thinks this problem is trivial, and he wants you to solve it.
A sequence $x$ is lexicographically smaller than a sequence $y$ if and only if one of the following holds:
- $x$ is a prefix of $y$ , but $x \ne y$ (this is impossible in this problem as all considered sequences have the same length);
- in the first position where $x$ and $y$ differ, the sequence $x$ has a smaller element than the corresponding element in $y$ .
The park can be represented as a connected graph with $n$ nodes and $m$ bidirectional edges. Initially Bob is at the node $1$ and he records $1$ on his notebook. He can wander from one node to another through those bidirectional edges. Whenever he visits a node not recorded on his notebook, he records it. After he visits all nodes at least once, he stops wandering, thus finally a permutation of nodes $a_1, a_2, \ldots, a_n$ is recorded.
Wandering is a boring thing, but solving problems is fascinating. Bob wants to know the lexicographically smallest sequence of nodes he can record while wandering. Bob thinks this problem is trivial, and he wants you to solve it.
A sequence $x$ is lexicographically smaller than a sequence $y$ if and only if one of the following holds:
- $x$ is a prefix of $y$ , but $x \ne y$ (this is impossible in this problem as all considered sequences have the same length);
- in the first position where $x$ and $y$ differ, the sequence $x$ has a smaller element than the corresponding element in $y$ .
输入格式
The first line contains two positive integers $n$ and $m$ ( $1 \leq n, m \leq 10^5$ ), denoting the number of nodes and edges, respectively.
The following $m$ lines describe the bidirectional edges in the graph. The $i$ -th of these lines contains two integers $u_i$ and $v_i$ ( $1 \leq u_i, v_i \leq n$ ), representing the nodes the $i$ -th edge connects.
Note that the graph can have multiple edges connecting the same two nodes and self-loops. It is guaranteed that the graph is connected.
The following $m$ lines describe the bidirectional edges in the graph. The $i$ -th of these lines contains two integers $u_i$ and $v_i$ ( $1 \leq u_i, v_i \leq n$ ), representing the nodes the $i$ -th edge connects.
Note that the graph can have multiple edges connecting the same two nodes and self-loops. It is guaranteed that the graph is connected.
输出格式
Output a line containing the lexicographically smallest sequence $a_1, a_2, \ldots, a_n$ Bob can record.
输入输出样例
输入 #1
3 2 1 2 1 3
输出 #1
1 2 3
输入 #2
5 5 1 4 3 4 5 4 3 2 1 5
输出 #2
1 4 3 2 5
输入 #3
10 10 1 4 6 8 2 5 3 7 9 4 5 6 3 4 8 10 8 9 1 10
输出 #3
1 4 3 7 9 8 6 5 2 10
In the first sample, Bob's optimal wandering path could be $1 \rightarrow 2 \rightarrow 1 \rightarrow 3$ . Therefore, Bob will obtain the sequence $\{1, 2, 3\}$ , which is the lexicographically smallest one.
In the second sample, Bob's optimal wandering path could be $1 \rightarrow 4 \rightarrow 3 \rightarrow 2 \rightarrow 3 \rightarrow 4 \rightarrow 1 \rightarrow 5$ . Therefore, Bob will obtain the sequence $\{1, 4, 3, 2, 5\}$ , which is the lexicographically smallest one.
In the second sample, Bob's optimal wandering path could be $1 \rightarrow 4 \rightarrow 3 \rightarrow 2 \rightarrow 3 \rightarrow 4 \rightarrow 1 \rightarrow 5$ . Therefore, Bob will obtain the sequence $\{1, 4, 3, 2, 5\}$ , which is the lexicographically smallest one.
C++ 编辑器
输入
输出
可保存默认模板;新题优先使用已保存模板。
当前快捷键仅展示,暂不支持修改。
- 撤销
Ctrl / ⌘ + Z - 重做
Ctrl / ⌘ + Y - 查找
Ctrl / ⌘ + F - 全选
Ctrl / ⌘ + A - 复制
Ctrl / ⌘ + C - 剪切
Ctrl / ⌘ + X - 粘贴
Ctrl / ⌘ + V - 自动排版
工具栏排版按钮 - 草稿保存
编辑时自动保存到本机
历史
提交记录
状态说明时间源码
AI
作答助手
你好,我是作答助手。可以问思路、复杂度、样例含义或代码报错原因;不会直接给出完整 AC 代码。
确定要清空代码吗?
提交通过
评测结果:Accepted