29022023-02-02 12:57:39tamasmarkÁruszállítás üres szakaszaicpp17Hibás válasz 35/50101ms52424 KiB
// arulas ures szakaszai.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>
#include <deque>

using namespace std;

struct adat
{
    long long indul, erkezik;
};
deque<adat >x;
long long i, n,a,b,m,db,y[1000000];
bool t;

int main()
{
    cin >> n>>m;
    x.resize(n + 1);
    /*for (i = 1; i <= m; ++i)
    {
        cin >> a >> b;
        x[a].indul++;
        x[b].erkezik++;
    }
    //x[1].erkezik = x[1].indul;
    for (i = 2; i <=n; ++i)
    {
        if (x[i].erkezik == 0)
        {
            x[i].indul =x[i].indul + x[i - 1].indul;
        }
        else if (x[i].erkezik)
        {
            x[i].indul = x[i].indul + (x[i - 1].indul-x[i].erkezik);
        }
        if (x[i].indul == 0&&x[i-1].indul>0&&i<=n&&!t)
        {
            db++;
            t = true;
        }
        else if (t && x[i].indul)
        {
            t = false;
        }
        
    }
    cout << db;*/
    y[n] = 5;
    for (i = 1; i <= m; ++i)
    {
        cin >> a >> b;
        y[a]++;
        y[b]--;
    }
    for (i = 2; i <= n; ++i)
    {
        y[i] += y[i - 1];
    }
    for (i = 1; i <= n; ++i)
    {
        if (y[i] == 0) t = true;
        else if (y[i - 1] == 0 && t)
        {
            db++;
            t = false;
        }
    }
    cout << db;
    return 0;
}
/*
10 4
8 9
1 6
1 3
3 4
*/
// 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
base35/50
1Elfogadva0/03ms1812 KiB
2Hibás válasz0/0101ms50404 KiB
3Elfogadva2/22ms2096 KiB
4Elfogadva2/23ms2220 KiB
5Elfogadva2/22ms2328 KiB
6Elfogadva2/23ms2572 KiB
7Elfogadva2/23ms2784 KiB
8Elfogadva2/23ms3136 KiB
9Elfogadva2/23ms3112 KiB
10Elfogadva2/23ms3136 KiB
11Elfogadva2/24ms6124 KiB
12Elfogadva2/24ms7872 KiB
13Elfogadva3/38ms7836 KiB
14Elfogadva3/313ms12476 KiB
15Elfogadva3/39ms12460 KiB
16Hibás válasz0/386ms51940 KiB
17Hibás válasz0/382ms52196 KiB
18Hibás válasz0/390ms52424 KiB
19Elfogadva3/317ms23304 KiB
20Elfogadva3/319ms28292 KiB
21Hibás válasz0/393ms52404 KiB
22Hibás válasz0/396ms52404 KiB