摘要: 最大权独立子集检查了四个小时,最后发现是输出的问题,哎,抓狂#include <iostream> #include <cstdio> #include <queue> #include <cstring> using namespace std; const int maxn=200*2; const int maxe=maxn*maxn*4; const int inf=1<<28; int val[maxn]; int m,n,s,t,tot,clo; struct Edge { int from,to,next; }; Edg 阅读全文
posted @ 2012-12-14 19:12 LJ_COME!!!!! 阅读(131) 评论(0) 推荐(0)