79182024-01-12 00:39:52adamSíkság (55)cpp17Időlimit túllépés 25/55280ms3956 KiB
#include <bits/stdc++.h>

using namespace std;

int main() {
    int length = 0;
    cin >> length;
    vector<int> terrain(length, 0);
    for (int i = 0; i < length; i++) {
        cin >> terrain[i];
    }
    int found_index = -1;
    int found_length = 0;

    for (int i = 0; i < length; i++) {
        int a = i;
        int l = 0;
        int isLess = -1;
        while(abs(terrain[i] - terrain[a]) <= 1) {
            if (isLess == -1) {
                if (terrain[i] - terrain[a] == -1) isLess = 1;
                else if (terrain[i] - terrain[a] == 1) isLess = 0;
                a++;
                l++;
            } else {
                if (terrain[i] - terrain[a] == -1 && isLess == 1) {
                    a++;
                    l++;
                } else if (terrain[i] - terrain[a] == 1 && isLess == 0) {
                    a++;
                    l++;
                } else if (terrain[i] - terrain[a] == 0) {
                    a++;
                    l++;
                } else break;
            }
        }
        if(found_length < l) {
            found_index = i;
            found_length = l;
        }

    }
    cout << found_length << " " << found_index + 1;
    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base25/55
1Elfogadva0/03ms1808 KiB
2Elfogadva0/032ms2224 KiB
3Elfogadva2/23ms2340 KiB
4Elfogadva2/23ms2556 KiB
5Elfogadva2/23ms2668 KiB
6Elfogadva2/23ms2752 KiB
7Elfogadva3/33ms2828 KiB
8Elfogadva2/23ms2828 KiB
9Elfogadva3/33ms2956 KiB
10Elfogadva3/326ms3076 KiB
11Elfogadva3/34ms3076 KiB
12Időlimit túllépés0/3279ms3172 KiB
13Elfogadva3/335ms3956 KiB
14Időlimit túllépés0/3261ms3032 KiB
15Időlimit túllépés0/3240ms3256 KiB
16Időlimit túllépés0/3273ms3488 KiB
17Időlimit túllépés0/3280ms3588 KiB
18Időlimit túllépés0/3240ms3492 KiB
19Időlimit túllépés0/3248ms3656 KiB
20Időlimit túllépés0/3277ms3704 KiB
21Időlimit túllépés0/3243ms3832 KiB
22Időlimit túllépés0/3266ms3888 KiB