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
160
161
162
163
164
165
166
167
#include <cstdio>
#include <cstddef>
#include <cstdlib>
#include <queue>
#include <vector>

#ifdef __unix
#define getchar getchar_unlocked
#endif

typedef int cint;
static inline cint getInt(){
    char get_tmp;
    unsigned int tmp;
    tmp = 0;
    while((get_tmp=getchar()) >= '0'){
        tmp = ((tmp<<3) + (tmp<<1)) + get_tmp - '0';
    }
    return tmp;
}

#ifndef __LOCAL
#define debug(...) // debug
#else
#define debug(...) fprintf(stderr, __VA_ARGS__)
#endif

struct zakres{
    int i;
    int l;
    int r;
    int v;
};

int zak_comp(const void *_a, const void *_b){
    const zakres *a = (const zakres *)_a;
    const zakres *b = (const zakres *)_b;
    if(a->l < b->l){
        return -1;
    }else if(a->l > b->l){
        return 1;
    }else{
        if(a->r < b->r){
            return -1;
        }else if(a->r > b->r){
            return 1;
        }
    }
    return 0;
}

// bool zak_comp_rev(const zakres &a, const zakres &b){
//     if(a.r >= b.r){
//         return false;
//     }else{
//         return true;
//     }
// }

int main(){
    cint n = getInt();
    cint m = getInt();

    zakres *arr = new zakres[m];
    zakres *p = arr;

    for(int i=0;i<m;i++, p++){
        p->i = i;
        p->l = getInt();
        p->r = getInt();
        p->v = getInt();
    }
    std::qsort(arr, m, sizeof(zakres), zak_comp);
    for(int i=0;i<m;i++){
        debug("[%d] %d %d %d\n", arr[i].i, arr[i].l, arr[i].r, arr[i].v);
    }
    auto zak_comp_rev = [](const zakres &a, const zakres &b){
        if(a.r < b.r){
            return false;
        }else if(a.r > b.r){
            return true;
        }else{
            if(a.v < b.v){
                return false;
            }else{
                return true;
            }
        }
    };

    std::priority_queue<zakres, std::vector<zakres>, decltype(zak_comp_rev)> queue(zak_comp_rev);
    // debug("Queue\n");
    int flag[] = {0,0,0};
    int counter = 0;
    int lastL;
    int lasti; -1;
    int i=0;
    while(i<m){
        if(queue.size() == 0){
            debug("[STEP]start %d\n", arr[i].i);
            queue.push(arr[i]);
            // flag |= 1<<arr[i].v;
            flag[arr[i].v-1]++;
            lastL = arr[i].l;
            lasti = arr[i].i;
            i++;
        }else if(queue.top().r >= arr[i].l){
            debug("[STEP]wchodzenie %d\n", arr[i].i);
            if(flag[0] > 0 && flag[1] > 0 && flag[2] == 0){
                counter += arr[i].l - lastL;
                debug("wchodzenie Zielone! [%d] %d %d\n", arr[i].i, lastL, arr[i].l);
                debug("diff %d\n", arr[i].l - lastL);
            }
            lastL = arr[i].l;
            // flag |= 1<<arr[i].v;
            flag[arr[i].v-1]++;
            queue.push(arr[i]);
            lasti = arr[i].i;
            i++;
        }else{
            debug("[STEP]schodzenie %d\n", queue.top().i);
            auto& t = queue.top();
            if(flag[0] > 0 && flag[1] > 0 && flag[2] == 0){
                counter += t.r - lastL+1;
                debug("schodzenie Zielone! [%d] %d %d\n", t.i, lastL, t.r);
                if(lasti == t.i){
                    counter++;
                }
                debug("diff %d\n", t.r - lastL+1);
            }
            // flag &= ~(1<<arr[i].v);
            flag[t.v-1]--;
            lastL = t.r+1;
            queue.pop();
        }

        debug("--ROUND--\n");
        debug("counter %d\n", counter);
        debug("Flag %d %d %d LastL %d\n", flag[0], flag[1], flag[2], lastL);
        debug("--ROUND END--\n");
    }
    while(queue.size() > 0){
        debug("[STEP]schodzenie %d\n", queue.top().i);
        auto& t = queue.top();
        if(t.r >= lastL && flag[0] > 0 && flag[1] > 0 && flag[2] == 0){
            counter += t.r - lastL+1;
            debug("schodzenie Zielone! [%d] %d %d\n", t.i, lastL, t.r);
            if(lasti == t.i){
                counter++;
            }
            debug("diff %d\n", t.r - lastL+1);
        }
        // flag &= ~(1<<arr[i].v);
        flag[t.v-1]--;
        lastL = t.r+1;
        queue.pop();
    }
    // if(flag[0] > 0 && flag[1] > 0 && flag[2] == 0){
    //     counter += n - lastL;
    // }
    printf("%d",counter);
    // while(queue.size() > 0){
    //     auto d = queue.top();
    //     debug("%d %d %d\n", d.l, d.r, d.v);
    //     queue.pop();
    // }
}