642021-01-09 16:26:13Kevinke12Inverziócpp11Time limit exceeded 46/50572ms13896 KiB
#include <iostream>
#include <vector>
using namespace std;

vector<int> t;
int dp[500005];
int hely[500005];
int N, kezd=-1, veg=-200000, be;

int Melyik(int szam)
{
    for(int i = szam+1; i <= N; i++)
    {
        if(dp[i]!=0)
            return i;
    }
    return szam;
}

int main()
{
    ios_base::sync_with_stdio(false);
    cin.tie(0); cout.tie(0);

    cin >> N;
    for(int i = 0; i < N; i++)
    {
        cin >> be;
        t.push_back(be);
        hely[be]=i;

        dp[t[i]]=t[i]; //onmaga
        dp[t[i]] = dp[Melyik(t[i])];

        if(abs(hely[t[i]]-hely[dp[t[i]]]) > veg-kezd)
        {
            kezd=min(hely[t[i]], hely[dp[t[i]]]);
            veg=max(hely[t[i]], hely[dp[t[i]]]);
        }
    }
    /*for(int i = 1; i <= N; i++)
    {
        if(abs(hely[i]-hely[dp[i]]) > veg-kezd)
        {
            kezd=min(hely[i], hely[dp[i]]);
            veg=max(hely[i], hely[dp[i]]);
        }
    }*/
    if((kezd==-1) || (kezd==veg))
        cout << "-1\n";
    else
        cout << kezd+1 << " " << veg+1 << "\n";
    return 0;
}
SubtaskSumTestVerdictTimeMemory
base46/50
1Accepted0/02ms1832 KiB
2Accepted0/014ms3296 KiB
3Accepted1/11ms1912 KiB
4Accepted2/21ms1932 KiB
5Accepted7/71ms1932 KiB
6Accepted2/28ms3328 KiB
7Accepted2/2499ms13768 KiB
8Accepted2/298ms13732 KiB
9Accepted2/2111ms13796 KiB
10Accepted2/289ms13680 KiB
11Accepted2/286ms13712 KiB
12Accepted2/281ms13896 KiB
13Accepted2/285ms13832 KiB
14Accepted2/279ms13716 KiB
15Accepted2/2391ms13740 KiB
16Accepted2/285ms13720 KiB
17Accepted2/282ms13864 KiB
18Accepted2/285ms13724 KiB
19Accepted3/3388ms13724 KiB
20Accepted3/3463ms13780 KiB
21Time limit exceeded0/2519ms13720 KiB
22Accepted2/283ms13764 KiB
23Accepted2/285ms13756 KiB
24Time limit exceeded0/2572ms1124 KiB