19452022-12-12 12:51:48bzsofiaÁruszállítás üres szakaszaicpp11Hibás válasz 24/5085ms19784 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];
    }

    elozo = 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
RészfeladatÖsszpontTesztVerdiktIdőMemória
base24/50
1Elfogadva0/03ms1812 KiB
2Elfogadva0/085ms17580 KiB
3Elfogadva2/22ms2260 KiB
4Elfogadva2/22ms2464 KiB
5Hibás válasz0/22ms2588 KiB
6Hibás válasz0/22ms2668 KiB
7Elfogadva2/22ms2744 KiB
8Hibás válasz0/22ms2740 KiB
9Elfogadva2/22ms2836 KiB
10Elfogadva2/22ms2912 KiB
11Elfogadva2/23ms3760 KiB
12Hibás válasz0/23ms4388 KiB
13Hibás válasz0/37ms4596 KiB
14Hibás válasz0/38ms6232 KiB
15Hibás válasz0/37ms6332 KiB
16Elfogadva3/363ms19268 KiB
17Elfogadva3/365ms19356 KiB
18Elfogadva3/374ms19484 KiB
19Hibás válasz0/310ms10064 KiB
20Hibás válasz0/312ms11620 KiB
21Hibás válasz0/374ms19708 KiB
22Elfogadva3/376ms19784 KiB