吾爱破解 - 52pojie.cn

 找回密码
 注册[Register]

QQ登录

只需一步,快速开始

查看: 794|回复: 2
收起左侧

[学习记录] 单源最短路算法:SPFA 学习笔记

[复制链接]
RainPPR 发表于 2022-12-24 18:23
本帖最后由 RainPPR 于 2022-12-24 18:24 编辑

SPFA

SPFA(Shortest Path Faster Algorithm)算法是 Bellman-Ford 算法的队列优化算法,通常用于求含负权边的单源最短路径,以及判负权环。

复杂度:一般 O(m),最坏 O(nm)。

Bellman-Ford 的优化

先回顾下 Bellman-Ford 算法的思路

  1. 迭代 n 次:for i : 1 ~ n 第 i 次操作表示:不超过 i 条边的最短距离

    1. 枚举所有边:for : 松弛操作

    2. dist[b] = min(dist[b], dist[a] + w);

如何优化

Bellman-Ford 算法,每次迭代所有边,来更新 dist[i](再此进行优化)
dist[b] = min(dist[b], dist[a] + w); 中,如果 dist[b] 变小,则 dist[a] 一定变小了(否则 dist[b] 不会变)

这里用宽搜进行优化

算法思路

  1. queue ← 1
  2. while queue 不空
    1. t ← q.front;
      q.pop();
    2. 更新 t 的所有出边:
      queue ← b;(如果 b 不在队列里)

详解见注释

代码

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <queue>

using namespace std;

typedef pair<int, int> PII;

const int N = 1e6 + 10;

int n, m;                // n:点数 m:边数

int h[N], w[N], e[N], ne[N], idx;
int dist[N];        // 从1号点走到每个点的最短距离
bool st[N];                // 这个点是否在队列当中,避免重复存储

void add(int a, int b, int c)
{
        e[idx] = b;
        w[idx] = c;
        ne[idx] = h[a];
        h[a] = idx++;
}

// 求出 1 号点到 n 号点的最短距离
int spfa()
{
        memset(dist, 0x3f, sizeof dist);
        dist[1] = 0;

        queue<int> q;
        q.push(1);
        st[1] = true;

        while (q.size())
        {
                int t = q.front();
                q.pop();

                st[t] = false;

                for (int i = h[t] ; i != -1 ; i = ne[i])
                {
                        int j = e[i];
                        if (dist[j] > dist[t] + w[i])
                        {
                                dist[j] = dist[t] + w[i];
                                if (!st[j])
                                {
                                        q.push(j);
                                        st[j] = true;
                                }
                        }
                }
        }

        if (dist[n] == 0x3f3f3f3f)
                return -2;
        else
                return dist[n];
}

int main()
{
        // 初始化邻接表
        memset(h, -1, sizeof(h));

        // 输入
        scanf("%d %d", &n, &m);
        int a, b, c;
        while (m--)
        {
                scanf("%d %d %d", &a, &b, &c);
                add(a, b, c);
        }

        // SPFA
        int t = spfa();

        // 输出
        if (t == -2)
                printf("impossible\n");
        else
                printf("%d\n", t);

        return 0;
}

SPFA判断负环

抽屉原理

算法思路

dist[x] 表示从 1 号点到 x 号点的最短距离;
cnt[x] 表示从 1 号点到 x 号点(当前)最短路的边数;

当更新最短距离是更新 cnt[x]

cnt[x] ≤ n,则一定经过了两个重复的点,即经过了一个环;而经过一个环,还是最短的,说明这个环是负环。

代码

#include <cstdio>
#include <iostream>
#include <algorithm>
#include <cstring>
#include <queue>

using namespace std;

typedef pair<int, int> PII;

const int N = 1e6 + 10;

int n, m;                // n:点数 m:边数

int h[N], w[N], e[N], ne[N], idx;
int dist[N];        // 从1号点走到每个点的最短距离
int cnt[N];                // 从1号点走到每个点的最短距离所经过的边数
bool st[N];                // 这个点是否在队列当中,避免重复存储

void add(int a, int b, int c)
{
        e[idx] = b;
        w[idx] = c;
        ne[idx] = h[a];
        h[a] = idx++;
}

int spfa()
{
        queue<int> q;
        for (int i = 1 ; i <= n ; ++i)
        {
                q.push(i);
                st[i] = true;
        }

        while (q.size())
        {
                int t = q.front();
                q.pop();

                st[t] = false;

                for (int i = h[t] ; i != -1 ; i = ne[i])
                {
                        int j = e[i];
                        if (dist[j] > dist[t] + w[i])
                        {
                                dist[j] = dist[t] + w[i];
                                cnt[j] = cnt[t] + 1;

                                if (cnt[j] >= n)
                                        return true;
                                if (!st[j])
                                {
                                        q.push(j);
                                        st[j] = true;
                                }
                        }
                }
        }
        return false;
}

int main()
{
        // 初始化邻接表
        memset(h, -1, sizeof(h));

        // 输入
        scanf("%d %d", &n, &m);
        int a, b, c;
        while (m--)
        {
                scanf("%d %d %d", &a, &b, &c);
                add(a, b, c);
        }

        // SPFA
        int t = spfa();

        // 输出
        printf(t ? "Yes" : "No");

        return 0;
}

免费评分

参与人数 1吾爱币 +1 热心值 +1 收起 理由
h07799486 + 1 + 1 谢谢@Thanks!

查看全部评分

发帖前要善用论坛搜索功能,那里可能会有你要找的答案或者已经有人发布过相同内容了,请勿重复发帖。

MrRight929 发表于 2022-12-24 22:40
之前也学过这些,但是没有这么透彻
lsy832 发表于 2022-12-24 23:30
您需要登录后才可以回帖 登录 | 注册[Register]

本版积分规则

返回列表

RSS订阅|小黑屋|处罚记录|联系我们|吾爱破解 - LCG - LSG ( 京ICP备16042023号 | 京公网安备 11010502030087号 )

GMT+8, 2024-11-25 03:19

Powered by Discuz!

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表