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
#include <iostream>
#include <vector>
#include <stdio.h>


using namespace std;

int main()
{
    int rozmiar,operacje;
    scanf("%d",&rozmiar);
    scanf("%d",&operacje);

    vector <int> farby;
    for(int i=0;i<rozmiar;i++) farby.push_back(0);

    for(int i=0;i<operacje;i++)
    {
        int od,doo,kolor;
        scanf("%d",&od);
        scanf("%d",&doo);
        scanf("%d",&kolor);

        int dodanie=2;
        if(kolor==1) dodanie=1;
        if(kolor==2) dodanie=3;
        if(kolor==3) dodanie=5;

        for(int j=od-1;j<=doo-1;j++)
            if((farby[j]==dodanie)||(farby[j]+dodanie>9)||
            ((farby[j]==4&&(dodanie==1||dodanie==3))||
            (farby[j]==6&&(dodanie==1||dodanie==5))||(farby[j]==8&&(dodanie==5||dodanie==3)))){}
            else
            {farby[j]=farby[j]+dodanie;};
    }
    int suma=0;
    for(int i=0;i<rozmiar;i++)
        if(farby[i]==4)
            suma++;

    printf("%d",suma);

    return 0;
}