1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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
#include <bits/stdc++.h>

using namespace std;

int n, m, a, b, x, y, z, wyn, nr;
vector <int> g[1000010];
char s[10];
int odw[1000010];

void dfs(int w)
{
	odw[w]=nr;
	for(int i=0; i<(int)g[w].size(); ++i)
	{
		if(odw[g[w][i]]!=nr)
		{
			dfs(g[w][i]);
		}
	}
}

int main()
{
	scanf("%d%d%d%d", &n, &m, &a, &b);
	for(int i=0; i<m; ++i)
	{
		scanf("%d%s%d", &x, s, &y);
		if(s[1]=='>')
		{
			g[y].push_back(x);
		}
		else
		{
			g[x].push_back(y);
			g[y].push_back(x);
		}
	}
	int l=(1ll<<b);
	for(int i=1; i<l; ++i)
	{
		++nr;
		x=i;
		y=b;
		while(x)
		{
			if(x&1)
			{
				dfs(y);
			}
			++y;
			x>>=1;
		}
		z=0;
		for(int j=1; j<=a; ++j)
		{
			if(odw[j]==nr)
			{
				++z;
			}
			else
			{
				break;
			}
		}
		if(z==a)
		{
			++wyn;
		}
	}
	printf("%d\n", wyn);
	return 0;
}