//Zadanie: Mieszanie kolorow //Potyczki Algorytmiczne 2020 //Autor: AT #include <iostream> using namespace std; bool kolory[4][1000007]; //bool zolte[1000007]; //bool niebieskie[1000007]; //bool czerwone[1000007]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, m; int L, R, kolor; cin >> n >> m; while(m--) { cin >> L >> R >> kolor; for(int i=L;i<=R;i++) { kolory[kolor][i] = true; } } int wynik = 0; for(int i=1;i<=n;i++) { if(kolory[1][i] and kolory[2][i] and !kolory[3][i]) { wynik++; } } cout << wynik << endl; }
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 | //Zadanie: Mieszanie kolorow //Potyczki Algorytmiczne 2020 //Autor: AT #include <iostream> using namespace std; bool kolory[4][1000007]; //bool zolte[1000007]; //bool niebieskie[1000007]; //bool czerwone[1000007]; int main() { ios_base::sync_with_stdio(0); cin.tie(0); int n, m; int L, R, kolor; cin >> n >> m; while(m--) { cin >> L >> R >> kolor; for(int i=L;i<=R;i++) { kolory[kolor][i] = true; } } int wynik = 0; for(int i=1;i<=n;i++) { if(kolory[1][i] and kolory[2][i] and !kolory[3][i]) { wynik++; } } cout << wynik << endl; } |