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
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
#include <bits/stdc++.h>
using namespace std;

int n, m, s=1048575;
bool Y[3000006];//1
bool B[3000006];//2
bool R[3000006];//3
int wynik;

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);

    cin>>n>>m;

    for (int i=0; i<m; ++i){//Generowanie drzewa
        int a, b, c;
        cin>>a>>b>>c;
        a+=s;
        b+=s;

        if (c==1)//Yellow
            while(true){
                if (a==b){
                    Y[a]=true;
                    break;
                }

                if (a==b-1){
                    Y[a]=true;
                    Y[b]=true;
                    break;
                }

                if (a%2==0)
                    a=a>>1;
                else{
                    Y[a]=true;
                    a=a>>1;
                    ++a;
                }

                if (b%2==1)
                    b=b>>1;
                else{
                    Y[b]=true;
                    b=b>>1;
                    --b;
                }
            }

        else if (c==2)//Blue
            while(true){
                if (a==b){
                    B[a]=true;
                    break;
                }

                if (a==b-1){
                    B[a]=true;
                    B[b]=true;
                    break;
                }

                if (a%2==0)
                    a=a>>1;
                else{
                    B[a]=true;
                    a=a>>1;
                    ++a;
                }

                if (b%2==1)
                    b=b>>1;
                else{
                    B[b]=true;
                    b=b>>1;
                    --b;
                }
            }

        else if (c==3)//Red
            while(true){
                if (a==b){
                    R[a]=true;
                    break;
                }

                if (a==b-1){
                    R[a]=true;
                    R[b]=true;
                    break;
                }

                if (a%2==0)
                    a=a>>1;
                else{
                    R[a]=true;
                    a=a>>1;
                    ++a;
                }

                if (b%2==1)
                    b=b>>1;
                else{
                    R[b]=true;
                    b=b>>1;
                    --b;
                }
            }
    }

    for (int i=s+1; i<(2*s)+1; ++i){//Sprawdzanie czy Yellow
        int k=i;

        while (k>=1){
            if (Y[k]==true){
                Y[i]=true;
                break;
            }
            k=k>>1;
        }
    }

    for (int i=s+1; i<(2*s)+1; ++i){//Sprawdzanie czy Blue
        int k=i;

        while (k>=1){
            if (B[k]==true){
                B[i]=true;
                break;
            }
            k=k>>1;
        }
    }

    for (int i=s+1; i<(2*s)+1; ++i){//Sprawdzanie czy Red
        int k=i;

        while (k>=1){
            if (R[k]==true){
                R[i]=true;
                break;
            }
            k=k>>1;
        }
    }

    for (int i=s+1; i<(2*s)+1; ++i)//Sprawdzanie czy Green
        if (Y[i]&&B[i]&&!R[i])
            ++wynik;

    cout<<wynik;


    return 0;
}