solution.cpp 1.0 KB
Newer Older
每日一练社区's avatar
每日一练社区 已提交
1
#include <iostream>
每日一练社区's avatar
每日一练社区 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
using namespace std;
int use[10];
int ans, e[10][10], father[10];
void init()
{
	//连边建图
	//a b c d e f g
	//1 2 3 4 5 6 7
	e[1][2] = e[1][6] = 1;
	e[2][1] = e[2][7] = e[2][3] = 1;
	e[3][2] = e[3][4] = e[3][7] = 1;
	e[4][3] = e[4][5] = 1;
	e[5][4] = e[5][6] = e[5][7] = 1;
	e[6][1] = e[6][5] = e[6][7] = 1;
}

每日一练社区's avatar
每日一练社区 已提交
18
int find(int a) //并查集
每日一练社区's avatar
每日一练社区 已提交
19 20 21 22 23 24 25 26
{
	if (father[a] == a)
		return a;
	father[a] = find(father[a]);
	return father[a];
}

//深度遍历
每日一练社区's avatar
每日一练社区 已提交
27
void dfs(int d)
每日一练社区's avatar
每日一练社区 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78
{
	if (d > 7)
	{
		for (int i = 1; i <= 7; i++)
		{
			father[i] = i;
		}

		for (int i = 1; i < 8; i++)
		{
			for (int j = 1; j < 8; j++)
			{
				if (e[i][j] == 1 && use[i] && use[j])
				{
					int fx = find(i);
					int fy = find(j);
					if (fx != fy)
					{
						father[fx] = fy;
					}
				}
			}
		}
		int k = 0;
		for (int i = 1; i < 8; i++)
		{
			if (use[i] && father[i] == i)
			{
				k++;
			}
		}
		if (k == 1)
		{
			ans++;
		}
		return;
	}

	use[d] = 1;
	dfs(d + 1);
	use[d] = 0;
	dfs(d + 1);
}

int main()
{
	init();
	dfs(1);
	cout << ans;
	return 0;
}