78722024-01-11 14:37:30AblablablaLeghosszabb béke (75 pont)cpp17Wrong answer 72/7567ms5524 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]){
            volt = 1;
            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(volt){
        cout << maxi << " " << maxInd + 1 << "\n";
    } else{
        cout << "-1\n";
    }
}
SubtaskSumTestVerdictTimeMemory
base72/75
1Accepted0/03ms1680 KiB
2Accepted0/067ms2552 KiB
3Wrong answer0/33ms2060 KiB
4Accepted3/33ms2272 KiB
5Accepted3/32ms2352 KiB
6Accepted3/33ms2616 KiB
7Accepted3/33ms2696 KiB
8Accepted4/43ms3220 KiB
9Accepted4/43ms3240 KiB
10Accepted4/43ms3580 KiB
11Accepted4/46ms3656 KiB
12Accepted4/47ms3912 KiB
13Accepted4/46ms4204 KiB
14Accepted4/46ms4228 KiB
15Accepted4/48ms4352 KiB
16Accepted4/48ms4608 KiB
17Accepted4/48ms4832 KiB
18Accepted4/48ms4908 KiB
19Accepted4/461ms5452 KiB
20Accepted4/461ms5480 KiB
21Accepted4/459ms5524 KiB
22Accepted4/461ms5412 KiB