知性老鼠

文章
4
资源
0
加入时间
2年10月21天

Organising the Organisation UVA - 10766(生成树计数)

题目链接大意:裸题生成树计数(ps:不是最小生成树)思路:要用到基尔霍夫矩阵参考博客代码:也是参考博客的#include<bits/stdc++.h>#define maxn 55using namespace std;typedef long long ll;int n,m,k;ll a[maxn][maxn];bool maps[maxn][maxn];...