【模板】最小点覆盖、最大独立集

#include <bits/stdc++.h> using namespace std; const int N=100050; const int M=100050; int n,m; struct Edge{int v,next;}edge[M]; int cnt,head[N]; void init() {cnt=0; memset(head,-1,sizeof(head));} void
相关文章
相关标签/搜索