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
#include <bits/stdc++.h>
#define thicc(boi) boi.size()
#define magiczne ios_base::sync_with_stdio(0);
#define linijki cin.tie(NULL);

using namespace std;

const int q = 1 << 20;
const int p = 1 << 21;

set <int> tree[p + 7];

void add(int l, int r, int x)
{
	l += q, r += q;
	while (l <= r)
	{
		if (l % 2 == 1)
			tree[l++].insert(x);
		if (r % 2 == 0)
			tree[r--].insert(x);
		l /= 2, r /= 2;
	}
}

bool green(int v)
{
	v += q;
	set <int> ans;
	while (v >= 1)
	{
		set_union(ans.begin(), ans.end(), tree[v].begin(), tree[v].end(), inserter(ans, ans.begin()));
		v /= 2;
	}
	return ans.count(1) and ans.count(2) and !ans.count(3);
}

int main()
{
    magiczne linijki;
    int n, m, a, b, c, res = 0;
    cin >> n >> m;
    for (int i = 0;i<m;i++)
	{
    	cin >> a >> b >> c;
    	add(a, b, c);
	}
    for (int i = 1;i<=n;i++)
    	res += green(i);
    cout << res;
    return 0;
}