19552022-12-12 13:13:14bzsofiaÁruszállítás üres szakaszaicpp11Wrong answer 14/5082ms19932 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];
    }

    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
SubtaskSumTestVerdictTimeMemory
base14/50
1Accepted0/03ms1680 KiB
2Wrong answer0/082ms17456 KiB
3Accepted2/22ms2132 KiB
4Wrong answer0/22ms2344 KiB
5Accepted2/22ms2416 KiB
6Accepted2/22ms2660 KiB
7Accepted2/22ms2660 KiB
8Accepted2/22ms2784 KiB
9Wrong answer0/22ms2852 KiB
10Wrong answer0/22ms2980 KiB
11Accepted2/23ms4024 KiB
12Accepted2/23ms4492 KiB
13Wrong answer0/37ms4488 KiB
14Wrong answer0/38ms6072 KiB
15Wrong answer0/37ms6284 KiB
16Wrong answer0/365ms19116 KiB
17Wrong answer0/367ms19320 KiB
18Wrong answer0/375ms19524 KiB
19Wrong answer0/310ms10112 KiB
20Wrong answer0/312ms11972 KiB
21Wrong answer0/378ms19804 KiB
22Wrong answer0/381ms19932 KiB