78712024-01-11 14:33:09AblablablaLeghosszabb béke (75 pont)cpp17Wrong answer 33/7567ms5020 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 = -1;
    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 - 1 - kezdes;
    if(hossz > maxi){
        maxi = hossz;
        maxInd = kezdes;
    }

    if(volt){
        cout << maxi << " " << maxInd + 1 << "\n";
    } else{
        cout << "-1\n";
    }
}
SubtaskSumTestVerdictTimeMemory
base33/75
1Accepted0/03ms1812 KiB
2Wrong answer0/067ms2876 KiB
3Accepted3/33ms2228 KiB
4Accepted3/33ms2432 KiB
5Wrong answer0/33ms2684 KiB
6Accepted3/33ms2884 KiB
7Wrong answer0/32ms2996 KiB
8Wrong answer0/43ms2972 KiB
9Wrong answer0/43ms3116 KiB
10Wrong answer0/43ms3236 KiB
11Wrong answer0/46ms3112 KiB
12Wrong answer0/47ms3220 KiB
13Wrong answer0/46ms3188 KiB
14Wrong answer0/46ms3404 KiB
15Wrong answer0/47ms3368 KiB
16Accepted4/48ms3672 KiB
17Accepted4/48ms3948 KiB
18Accepted4/48ms4160 KiB
19Wrong answer0/461ms4872 KiB
20Accepted4/461ms5020 KiB
21Accepted4/459ms4896 KiB
22Accepted4/461ms4892 KiB