HDU-2544-最短路
阿新 • • 發佈:2018-09-20
%d -o string nlogn flag iostream cst using def
- 迪傑斯特拉算法--O(nlogn)
#include"iostream" #include"cstring" #include"cstdio" using namespace std; const int inf = 0x3f3f3f3f; typedef long long LL; int map[105][105]; int ans[105], n, m; bool flag[105]; void dij() { for(int i = 2; i <= n; i++) ans[i] = map[1][i]; ans[1] = 0; memset(flag, true
HDU-2544-最短路