UVA - 10766 Organising the Organisation(生成树计数模板)
本题的题意是给你n个人,m对人不能相互领导,k是总领导,然后给出哪m对人,问你有多少种方法。其实谁是领导无所谓的,因为这是一个无向树,这是一个关于生成树计数的模板题,代码如下:#include <cstdio>#include <cstring>#include <iostream>using namespace std; typedef lon...