78732024-01-11 14:38:31AblablablaLeghosszabb béke (75 pont)cpp17Accepted 75/7567ms4428 KiB
#include <bits/stdc++.h>

using namespace std;

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

    vector<int> szamok(n + 1, 0);
    for(int i = 0; i < m; i++){
        int a, b;
        cin >> a >> b;
        a--;

        szamok[a]++;
        szamok[b]--;
    }

    vector<bool> jelenleg(n, 0);
    int akt = 0;
    for(int i = 0; i <= n; i++){
        akt += szamok[i];
        jelenleg[i] = (akt == 0);
    }

    int kezdes = 0;
    int maxi = 0;
    int maxInd = -2;
    bool volt = 0;

    for(int i = 0; i <= n; i++){
        if(jelenleg[i]){
            continue;
        }

        int hossz = i - kezdes;
        if(hossz > maxi){
            maxi = hossz;
            maxInd = kezdes;
        }
        kezdes = i + 1;
    }

    int hossz = n - kezdes;
    if(hossz > maxi){
        maxi = hossz;
        maxInd = kezdes;
    }

    if(maxInd != -2){
        cout << maxi << " " << maxInd + 1 << "\n";
    } else{
        cout << "-1\n";
    }
}
SubtaskSumTestVerdictTimeMemory
base75/75
1Accepted0/03ms1808 KiB
2Accepted0/065ms2708 KiB
3Accepted3/33ms2216 KiB
4Accepted3/32ms2300 KiB
5Accepted3/33ms2544 KiB
6Accepted3/33ms2640 KiB
7Accepted3/33ms2744 KiB
8Accepted4/43ms2956 KiB
9Accepted4/43ms3124 KiB
10Accepted4/43ms3180 KiB
11Accepted4/46ms3188 KiB
12Accepted4/47ms3560 KiB
13Accepted4/46ms3516 KiB
14Accepted4/46ms3680 KiB
15Accepted4/47ms3640 KiB
16Accepted4/48ms3688 KiB
17Accepted4/48ms3760 KiB
18Accepted4/48ms3756 KiB
19Accepted4/459ms4276 KiB
20Accepted4/467ms4372 KiB
21Accepted4/457ms4428 KiB
22Accepted4/461ms4388 KiB