Skip to content

Instantly share code, notes, and snippets.

@pcyu16
pcyu16 / SPFA.cpp
Created May 16, 2010 17:42 — forked from CrBoy/SPFA.cpp
SPFA
/*
* SPFA - Shortest Path Faster Algorithm
*/
#include <cstdio> // printf
#include <cstdlib> // NULL
#include <algorithm> // fill
#include <vector>
#include <queue>
using namespace std;