30732023-02-14 10:19:04CWMÁruszállítás üres szakaszaicpp11Wrong answer 41/5097ms8528 KiB
// nemesGyak000.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>
#include <algorithm>
using namespace std;

int main()
{
    int length, q;
    cin >> length >> q;
    vector<pair<int, int>> times;
    for (size_t i = 0; i < q; i++)
    {
        int p, n;
        cin >> p >> n;
        times.push_back({p,1});
        times.push_back({n,-1 });
    }
    sort(times.begin(), times.end());
    int Index = 1;
    int SUM = 0;
    int rn = 0;
    int beginning = -1;
    if (times[0].first != 1) rn++;
    for (size_t i = 0; i < times.size(); i++)
    {
        SUM += times[i].second;
        if (times[i].first!=length) {
            if (beginning == times[i].first) {
                rn--;
            }
            if (SUM == 0) {
                rn++;
                beginning = times[i].first;
            }
        }
    }
    cout << rn;
}

// 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
base41/50
1Accepted0/03ms1812 KiB
2Accepted0/097ms6148 KiB
3Accepted2/22ms2136 KiB
4Accepted2/23ms2388 KiB
5Accepted2/23ms2448 KiB
6Accepted2/23ms2528 KiB
7Accepted2/23ms2776 KiB
8Accepted2/23ms2976 KiB
9Accepted2/23ms3228 KiB
10Accepted2/22ms3280 KiB
11Accepted2/23ms3412 KiB
12Accepted2/23ms3636 KiB
13Wrong answer0/37ms3996 KiB
14Wrong answer0/39ms4092 KiB
15Wrong answer0/37ms4328 KiB
16Accepted3/371ms8180 KiB
17Accepted3/371ms8188 KiB
18Accepted3/382ms8184 KiB
19Accepted3/39ms4832 KiB
20Accepted3/310ms4956 KiB
21Accepted3/389ms8528 KiB
22Accepted3/392ms8396 KiB