摘要: 题意是在一个联通的无向图中切断两条边使其不连通,求切边的放法数。。。具体参加曹钦翔神犇的神论文吧http://www.docin.com/p-52577984.html 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 const int maxn = 2005; 9 const int maxm = 200005; 10 int nume,ct,n,m; 11 int g[maxn]; 12 int dfn[maxn]; 13 int s[ma... 阅读全文
posted @ 2014-03-09 00:35 Mosudas 阅读(417) 评论(0) 推荐(0) 编辑