马上注册,结交更多好友,享用更多功能^_^
您需要 登录 才可以下载或查看,没有账号?立即注册
x
本帖最后由 Ewan-Ahiouy 于 2023-7-23 11:57 编辑
我的代码:
/* https://www.luogu.com.cn/problem/P5318 -- 查找文献 */
#include <bits/stdc++.h>
using namespace std;
int n, m, x, y;
vector <int> p[100009];
queue <int> q;
int u[100009];
void dfs(int x) {
cout << x << ' ';
for (int i = 0, z = p[x].size(); i < z; i++) {
if (!u[p[x][i]]){
u[p[x][i]] = 1;
dfs(p[x][i]);
}
}
}
int main() {
memset(u, 0, sizeof(u));
cin >> n >> m;
for (int i = 0; i < m; i++) {
cin >> x >> y;
p[x].push_back(y);
p[y].push_back(x);
}
for (int i = 1; i <= n; i++) {
sort(p[i].begin(), p[i].end());
}
u[1] = 1;
dfs(1);
cout << endl;
memset(u, 0, sizeof(u));
u[1] = 1;
q.push(1);
while (!q.empty()) {
int x = q.front();
q.pop();
cout << x << ' ';
for (int i = 0, z = p[x].size(); i < z; i++){
if (!u[p[x][i]]) {
u[p[x][i]] = 1;
q.push(p[x][i]);
}
}
}
cout << endl;
return 0;
}
下面是输入输出
in
8 9
1 2
1 3
1 4
2 5
2 6
3 7
4 7
4 8
7 8
out
1 2 5 6 3 7 8 4
1 2 3 4 5 6 7 8
我的输出
1 2 5 6 3 7 4 8
1 2 3 4 5 6 7 8
只是简单的模板,大佬们看的懂吧?
不知道为什么,好像dfs并没有搜索到最底层?
求助!!
注意,我要的是我的代码有什么问题,不是代码!!!
注意,我要的是我的代码有什么问题,不是代码!!!
注意,我要的是我的代码有什么问题,不是代码!!!
链接在代码里
已经自己解决,是因为多写了第29行
好吧,看看下面的回答,chatgpt都是 lj !
特别是make_python,回答太6了
最佳就送没用chatgpt的人吧
|