80532024-01-12 11:35:21bzsofiaLegmesszebbi rossz sorrendű (35 pont)cpp17Hibás válasz 3/35300ms10264 KiB
// Sorrend.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <vector>

using namespace std;

int i, n, j, maxt, maxi, maxj;

int main()
{
    cin >> n;
    vector <int> x(n + 1);

    for (i = 1; i <= n; ++i)
    {
        cin >> x[i];
    }

    i = 1;
    j = n;
    while (i<j && j - i + 1>maxt)
    {
        if (x[i] > x[j])
        {
            maxt = j - i + 1;
            maxi = i;
            maxj = j;
            j = n;
            ++i;
        }
        else
        {
            if (i + 1 == j)
            {
                ++i;
                j = n;
            }
            else
            {
                --j;
            }
        }
    }

    if (maxi == 0 && maxj == 0) cout << "-1";
    else cout << maxi << " " << maxj;

    return 0;
}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
RészfeladatÖsszpontTesztVerdiktIdőMemória
base3/35
1Elfogadva0/03ms1808 KiB
2Hibás válasz0/037ms3536 KiB
3Elfogadva1/13ms2832 KiB
4Elfogadva1/12ms2836 KiB
5Hibás válasz0/13ms2964 KiB
6Elfogadva1/13ms3176 KiB
7Hibás válasz0/13ms3268 KiB
8Hibás válasz0/13ms3552 KiB
9Hibás válasz0/13ms3456 KiB
10Hibás válasz0/14ms3804 KiB
11Hibás válasz0/14ms4072 KiB
12Hibás válasz0/217ms4500 KiB
13Hibás válasz0/218ms4660 KiB
14Hibás válasz0/219ms5376 KiB
15Hibás válasz0/213ms5572 KiB
16Hibás válasz0/219ms5924 KiB
17Hibás válasz0/227ms6596 KiB
18Hibás válasz0/230ms7144 KiB
19Hibás válasz0/234ms7780 KiB
20Hibás válasz0/235ms8640 KiB
21Hibás válasz0/237ms9384 KiB
22Hibás válasz0/237ms10040 KiB
23Időlimit túllépés0/2300ms9540 KiB
24Időlimit túllépés0/2270ms10264 KiB