为什么SPFA不让过

P4779 【模板】单源最短路径(标准版)

zrt090604 @ 2022-11-25 20:10:06

这就是故意卡我SPFA的吗??? lgcmzz

#include<bits/stdc++.h>
using namespace std;
const int N = 2e5 + 5;
int n, m, s, idx, e[N], ne[N], w[N], h[N], dist[N];
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() {
    memset(dist, 0x3f, sizeof dist);
    dist[s] = 0;
    queue<int> q;
    q.push(s);
    st[s] = 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 -1000000000;
    return dist[n];
}
int main () {
    scanf("%d%d%d", &n, &m, &s);
    memset(h, -1, sizeof h);
    int a, b, c;
    for(int i = 1;i <= m;++i) scanf("%d%d%d", &a, &b, &c), add(a, b, c);
    int t = spfa();
    if(t == -1000000000) printf("impossible"), exit(0);
    for(int i = 1;i <= n;++i) printf("%d ", dist[i]);
    return 0;
}

by reveal @ 2022-11-25 20:11:26

是的


by wangyibo201026 @ 2022-11-25 20:11:36

这道题目就是卡 SPFA 的。


by Kanbe_Kotori @ 2022-11-25 20:13:29

因为 SPFA 复杂度不对。


by Ja50nY0un9_as_AgNO3 @ 2022-11-25 20:13:33

正确的。有三组菊花图。

Dijkstra可过。


by Ja50nY0un9_as_AgNO3 @ 2022-11-25 20:14:12

需要练SPFA,请去P3371。


by 8atemak1r @ 2022-11-25 20:23:51

2018 年 7 月 19 日,某位同学在 NOI Day 1 T1 归程 一题里非常熟练地使用了一个广为人知的算法求最短路。

然后呢?

$\text{Ag} \rightarrow\text{Cu}$; 最终,他因此没能与理想的大学达成契约。 小 F 衷心祝愿大家不再重蹈覆辙。

by 王君诺 @ 2022-11-30 15:58:07

@zrt090604 虽然我知道这不好

但是您可以尝试这样


by define_int_long_long @ 2022-12-03 14:36:50

@zrt090604

关于SPFA——

它死了。

10^5\times2\times10^5=2\times10^{10}.

by Automatically @ 2022-12-09 13:36:51

一堆红名使我.....


|