52912023-04-25 15:37:50AblablablaKövetkező permutáció (50 pont)cpp17Wrong answer 46/507ms4348 KiB
#include <bits/stdc++.h>

using namespace std;

int main()
{
    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
base46/50
1Accepted0/03ms1808 KiB
2Accepted0/04ms2024 KiB
3Accepted1/13ms2088 KiB
4Accepted1/13ms2216 KiB
5Accepted1/13ms2304 KiB
6Accepted1/13ms2428 KiB
7Accepted2/23ms2644 KiB
8Wrong answer0/23ms2856 KiB
9Accepted2/23ms2936 KiB
10Accepted2/23ms3060 KiB
11Accepted1/13ms3148 KiB
12Accepted1/13ms3428 KiB
13Accepted1/13ms3368 KiB
14Accepted1/13ms3528 KiB
15Accepted3/33ms3516 KiB
16Accepted3/33ms3644 KiB
17Accepted3/33ms3728 KiB
18Accepted3/33ms3864 KiB
19Accepted3/34ms3988 KiB
20Accepted3/36ms4192 KiB
21Accepted3/36ms4112 KiB
22Accepted3/36ms4116 KiB
23Accepted3/36ms4120 KiB
24Accepted3/36ms4116 KiB
25Wrong answer0/27ms4348 KiB
26Accepted2/27ms4220 KiB