版权声明:原创作品,允许转载,转载时请务必以超链接形式标明文章原始出版、作者信息和本声明。否则将追究法律责任。 http://blog.csdn.net/topmvp - topmvp PRACTICAL, AUTHORITATIVE GUIDANCE ON KEEPING A WIRELESS NETWORK WORKING HARD FOR YOUR BUSINESS! With annu
//可重复的最小路径覆盖 //先用floyd求传递闭包,最小覆盖数=N-最大匹配数 //若不可重复覆盖,则省去floyd过程 #include<iostream> #include<cstdio> #include<cstring> #include<cmath> using namespace std; int n, m, ans; const int INF=0xfffffff;