52932023-04-25 15:47:53AblablablaKövetkező permutáció (50 pont)cpp17Accepted 50/504ms4900 KiB
#include <bits/stdc++.h>

using namespace std;

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


    int n;
    cin >> n;

    vector<int> sorozat(n);

    for(int i = 0; i < n; i++){
        cin >> sorozat[i];
    }

    int hatar = 0;
    vector<int> kiszed(1, sorozat[n - 1]);

    for(int i = n - 2; i >= 0; i--){
        kiszed.push_back(sorozat[i]);
        if(sorozat[i] < sorozat[i + 1]){
            hatar = i;
            break;
        }
    }

    sort(kiszed.begin(), kiszed.end());

    /*for(int x : kiszed){
        cout << x << " ";
    }
    cout << "\n";*/

    int hatar2 = 0;

    for(int i = 0; i < kiszed.size(); i++){
        if(kiszed[i] == sorozat[hatar]){
            sorozat[hatar] = kiszed[i + 1];
            hatar2 = i + 1;
            break;
        }
    }

    int helyzet = hatar + 1;

    for(int i = hatar2 - 1; i >= 0; i--){
        sorozat[helyzet] = kiszed[i];
        helyzet++;
    }

    for(int i = hatar2 + 1; i < kiszed.size(); i++){
        sorozat[helyzet] = kiszed[i];
        helyzet++;
    }

    for(int x : sorozat){
        cout << x << " ";
    }
    cout << "\n";
}
SubtaskSumTestVerdictTimeMemory
base50/50
1Accepted0/03ms2100 KiB
2Accepted0/04ms2360 KiB
3Accepted1/13ms2424 KiB
4Accepted1/13ms2464 KiB
5Accepted1/13ms2676 KiB
6Accepted1/12ms2888 KiB
7Accepted2/23ms3172 KiB
8Accepted2/23ms3360 KiB
9Accepted2/23ms3704 KiB
10Accepted2/23ms3780 KiB
11Accepted1/13ms3804 KiB
12Accepted1/12ms3812 KiB
13Accepted1/13ms3848 KiB
14Accepted1/13ms3820 KiB
15Accepted3/33ms3916 KiB
16Accepted3/33ms3988 KiB
17Accepted3/33ms4008 KiB
18Accepted3/33ms4220 KiB
19Accepted3/34ms4024 KiB
20Accepted3/34ms4160 KiB
21Accepted3/34ms4176 KiB
22Accepted3/34ms4288 KiB
23Accepted3/34ms4144 KiB
24Accepted3/34ms4392 KiB
25Accepted2/24ms4900 KiB
26Accepted2/24ms4628 KiB