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
#include <bits/stdc++.h>
using namespace std;

const int MAXN = 1e6 + 9;
int tmp[3];
int tab[MAXN][3];
vector<int> dodaj[MAXN];
vector<int> odejmij[MAXN];

int main() {
	ios_base::sync_with_stdio(false);
	cin.tie(NULL);

	int n, m;
	cin >> n >> m;
	for(int i=0;i<m;i++) {
		int a, b, c;
		cin >> a >> b >> c;
		dodaj[a].push_back(c-1);
		odejmij[b].push_back(c-1);
	}
	for(int i=1;i<=n;i++) {
		for(int x:dodaj[i]) 
			tmp[x]++;
		for(int j=0;j<3;j++)
			tab[i][j] = tmp[j];
		for(int x:odejmij[i])
			tmp[x]--;
	}
	int result = 0;
	for(int i=1;i<=n;i++) 
		if(tab[i][0] and tab[i][1] and !tab[i][2])
			result++;
	cout << result << "\n";
}