摘要: Floyd 最小环模板题code/* floyd最小环,记录路径,时间复杂度O(n^3) 不能处理负环*/#include #include using namespace std;const int INF = 109, maxn = 252645135;int g[INF... 阅读全文
posted @ 2014-09-02 21:45 keambar 阅读(131) 评论(0) 推荐(0)