Let suppose I have a Delaunay triangulation with $n$ triangles, and K distinct colours. I want to color each triangle such that if I start from one triangle with color k, i can reach all triangles with the same color, without passing on triangles with colors different from k. I can move from one triangle to another if they share an edge.
I want to know if there is a way to determine all possible combinations of this colored triangulation, and for each combination I'm only interested in the number of triangles that have a specific color.
For example, I just want to know that there are
2 combinations with 3 color_1, 2 color_2 and 10 color_3
10 combinations with 3 color_1 11 color_2 and 1 color_3 etc...
Is that possible? Even a reference it's super helpful!
Thanks.
Edit: The color is inside the triangles
Edit 2: I can move from a triangle that is colored with the k-th color, to another one, only if it has the same color and they have an edge in common