This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* | |
| * SPFA - Shortest Path Faster Algorithm | |
| */ | |
| #include <cstdio> // printf | |
| #include <cstdlib> // NULL | |
| #include <algorithm> // fill | |
| #include <vector> | |
| #include <queue> | |
| using namespace std; |