洛谷题单指南-图的基本应用-P5318 【深基18.例3】查找文献

原题链接:https://www.luogu.com.cn/problem/P5318

题意解读:图的建立、DFS、BFS模版题。

解题思路:

本题主要考察建图、图的DFS、BFS遍历。

建图方式:领接表vector<int> g[N];

需要注意的是,在DFS、BFS搜索领接点时,需要先将领接点编号排序,满足题目要求的“如果有很多篇文章可以参阅,请先看编号较小的那篇”。

100分代码:

#include <bits/stdc++.h>
using namespace std;

const int N = 1e5 + 5;

vector<int> g[N];
queue<int> q;
bool flag[N];
int n, m, x, y;

void dfs(int u)
{
    cout << u << " ";
    flag[u] = true;
    sort(g[u].begin(), g[u].end());
    for(int i = 0; i < g[u].size(); i++)
    {
        int v = g[u][i];
        if(!flag[v])
        {
            dfs(v);
        }
    }
}

void bfs(int root)
{
    flag[root] = true;
    q.push(root);
    while(q.size())
    {
        int u = q.front(); q.pop();
        cout << u << " ";
        sort(g[u].begin(), g[u].end());
        for(int i = 0; i < g[u].size(); i++)
        {
            int v = g[u][i];
            if(!flag[v])
            {
                q.push(v);
                flag[v] = true;
            }
        }
    }
}

int main()
{
    cin >> n >> m;
    while(m--)
    {
        cin >> x >> y;
        g[x].push_back(y);
    }
    dfs(1); 
    cout << endl;
    memset(flag, 0, sizeof(flag));
    bfs(1);
    
    return 0;
}

 

posted @ 2024-03-26 19:58  五月江城  阅读(57)  评论(0编辑  收藏  举报