19432022-12-12 12:50:14bzsofiaÁruszállítás üres szakaszaicpp11Wrong answer 2/5086ms19616 KiB

// Áruszállítás üres szakaszai.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>

using namespace std;

long long n, m, i, a, b, akt, db;
bool elozo;

int main()
{
    cin >> m >> n;

    vector <long long> x(m + 1);

    for (i = 1; i <= n; ++i)
    {
        cin >> a >> b;
        ++x[a];
        --x[b + 1];
    }

    for (i = 1; i <= m; ++i)
    {
        akt += x[i];
        if (akt == 0 && elozo)
        {
            elozo = 0;
            ++db;
        }
        else if (akt > 0) elozo = 1;
    }

    cout << db;
}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
SubtaskSumTestVerdictTimeMemory
base2/50
1Accepted0/03ms1964 KiB
2Wrong answer0/086ms17536 KiB
3Wrong answer0/22ms2144 KiB
4Accepted2/22ms2352 KiB
5Wrong answer0/22ms2588 KiB
6Wrong answer0/22ms2832 KiB
7Wrong answer0/22ms2948 KiB
8Wrong answer0/22ms3072 KiB
9Wrong answer0/22ms3156 KiB
10Wrong answer0/22ms3196 KiB
11Wrong answer0/23ms4240 KiB
12Wrong answer0/23ms4820 KiB
13Wrong answer0/36ms4672 KiB
14Wrong answer0/38ms6232 KiB
15Wrong answer0/37ms6232 KiB
16Wrong answer0/363ms18964 KiB
17Wrong answer0/364ms18964 KiB
18Wrong answer0/374ms19180 KiB
19Wrong answer0/310ms9828 KiB
20Wrong answer0/312ms11668 KiB
21Wrong answer0/376ms19616 KiB
22Wrong answer0/376ms19540 KiB