11 2017 档案
摘要:1 #include<bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 int n,m; 5 const int maxn=1e5+3; 6 struct node 7 { 8 int team; 9 int num; 1
阅读全文
摘要:http://poj.org/problem?id=3352 【题意】 给定一个连通的无向图,求最少加多少条边使得这个图变成边双连通图 【AC】 1 //#include<bits/stdc++.h> 2 #include<iostream> 3 #include<cstdio> 4 #includ
阅读全文