【模板】最小點覆蓋、最大獨立集

#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
相關文章
相關標籤/搜索