原创 單源最短路 Dijkstra 算法 C++高效實現

#include <iostream>#include <vector>#include <set>using namespace std;typedef vector <int> vi;typedef pair <int, int>