88432024-02-01 16:16:04KristófLeghosszabb béke (75 pont)cpp17Wrong answer 0/7567ms6628 KiB
#include <iostream>
#include <vector>
using namespace std;

struct harc{

int kezd;
int veg;


}typedef harc;

int main()
{
    int nap;
    int n;
    cin>>nap>>n;
    int kezd[n];
    int veg[n];
    int haboru[nap+1];
    vector <harc> hab;
    for(int i=0;i<nap;i++){
        haboru[i]=-1;
    }
    for(int i=0;i<n;i++){
        cin>>kezd[i];
        cin>>veg[i];

        if(haboru[kezd[i]]<veg[i]){
        haboru[kezd[i]]=veg[i];
    }
    }
    harc x;
    for(int i=0;i<nap;i++){
        if(haboru[i]!=-1){
                x.kezd=i;
                x.veg=haboru[i];
            if(hab.size()==0){
                hab.push_back(x);
            }
        else{
            if(x.kezd>hab[hab.size()-1].veg){
                hab.push_back(x);
            }
        else if(x.veg>hab[hab.size()-1].veg){
            hab[hab.size()-1].veg=x.veg;
        }
        }
        }

    }
    int max=hab[0].kezd-1;
    cout<<max;
    int kezd2=1;
    for(int i=0;i<hab.size()-1;i++){
        if(hab[i+1].kezd-hab[i].veg-1>max){
            max=hab[i+1].kezd-hab[i].veg-1;
            kezd2=hab[i].veg+1;
        }

    }

    if(max<nap-hab[hab.size()-1].veg){
        max=nap-hab[hab.size()-1].veg;
        kezd2=hab[hab.size()-1].veg+1;
    }
    if(max==0){
        cout<<-1;
    }
     else cout<<max<<" "<<kezd2;

    return 0;
}
SubtaskSumTestVerdictTimeMemory
base0/75
1Wrong answer0/03ms1680 KiB
2Wrong answer0/067ms4172 KiB
3Wrong answer0/33ms2068 KiB
4Wrong answer0/33ms2272 KiB
5Wrong answer0/32ms2352 KiB
6Wrong answer0/33ms2628 KiB
7Wrong answer0/33ms2812 KiB
8Wrong answer0/43ms3028 KiB
9Wrong answer0/43ms3152 KiB
10Wrong answer0/43ms3504 KiB
11Wrong answer0/46ms3504 KiB
12Wrong answer0/48ms3960 KiB
13Wrong answer0/46ms3756 KiB
14Wrong answer0/46ms4016 KiB
15Wrong answer0/47ms4116 KiB
16Wrong answer0/47ms4156 KiB
17Wrong answer0/48ms4452 KiB
18Wrong answer0/48ms4720 KiB
19Wrong answer0/461ms6540 KiB
20Wrong answer0/461ms6628 KiB
21Wrong answer0/457ms6476 KiB
22Wrong answer0/461ms6504 KiB