摘要: 水题#include#include#include#includeusing namespace std;int T;int n,flag=0;int d[1000];int tot;int main(){ scanf("%d",&T); while(T--){ f... 阅读全文
posted @ 2015-10-01 15:27 Fighting_Heart 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 一般图的最大匹配+枚举 带花树开花算法#include #include #include #include using namespace std;const int N = 250;// 并查集维护int belong[N];int findb(int x){ return belong[... 阅读全文
posted @ 2015-10-01 15:12 Fighting_Heart 阅读(260) 评论(0) 推荐(0) 编辑