给你N个棍子,每个棍子的两端涂有颜色。两个涂有一种颜色的端点可连在一起。
问这N根棍子是否能连成一条直线。
可以把每个棍子看成一条边,端点为两个节点。则问题转化成所给的这些端点是否连通,若连通是否存在一笔画的问题,即是否存在欧拉回路。
并查集+路径压缩 判断图是否连通。
另在图连通的情况下若不存在度数为奇数的点或有且仅有两个度数为奇数的点,则存在欧拉回路。
1 #include <iostream> 2 #include <cstdlib> 3 #include <cstdio> 4 #include <algorithm> 5 #include <cstring> 6 7 using namespace std; 8 9 int me[510000]; 10 int degree[510000] = {0}; 11 int ans_color; 12 13 struct Tire 14 { 15 Tire *next[26]; 16 int ans; 17 }*root; 18 19 Tire *creat() 20 { 21 Tire * p = (Tire *)malloc(sizeof(Tire)); 22 for(int i = 0;i < 26; i++) 23 p->next[i] = NULL; 24 p->ans = -1; 25 return p; 26 } 27 28 int ans_odd,ans_sum; 29 30 int insert(Tire *root,char *s) 31 { 32 int len = 0; 33 while(s[len] != '