36862023-03-02 10:48:55gittyKombináció (50)cpp17Hibás válasz 33/503ms3500 KiB
#include <bits/stdc++.h>

using namespace std;

int main()
{
    //ifstream cin("in.txt");

    int n, m;
    cin >> n >> m;

    vector<int> v(m + 1, 0);

    for(int i = 1; i <= m; i++){
        cin >> v[i];
    }

    /// lefele:

    for(int i = m; i >= 0; i--){
        if(i == 0){
            for(int j = n - m + 1; j <= n; j++){
                cout << j << " ";
            }
        }
        else if(v[i] - 1 != v[i - 1]){

            int x = m - i + 1;

            int a = v[i] - 1;

            for(int j = 1; j < i; j++){
                cout << v[j] << " ";
            }

            for(int j = 0; j < x; j++){
                cout << a + j << " ";
            }

            break;
        }
    }

    cout << "\n";

    /// felfele:
    for(int i = m; i >= 0; i--){

        if(i == 0){
            for(int j = 1; j <= m; j++){
                cout << j << " ";
            }
        }
        else if(v[i] + 1 <= n - m + i){
            int x = v[i] + 1;

            for(int j = 1; j < i; j++){
                cout << v[j] << " ";
            }

            for(int j = x - 1; j < n; j++){
                cout << j + 1 << " ";
            }

            break;

        }
    }

    /*cout << "\n";

    for(int i = 1; i <= m; i++){
        cout << i << " ";
    }*/


    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base33/50
1Elfogadva0/03ms1808 KiB
2Hibás válasz0/03ms2148 KiB
3Elfogadva2/22ms2220 KiB
4Részben helyes1/22ms2308 KiB
5Részben helyes1/23ms2704 KiB
6Részben helyes1/23ms2776 KiB
7Részben helyes1/22ms2856 KiB
8Elfogadva2/23ms2932 KiB
9Részben helyes1/22ms3056 KiB
10Részben helyes2/43ms3184 KiB
11Részben helyes2/42ms3284 KiB
12Elfogadva4/42ms3368 KiB
13Részben helyes2/42ms3372 KiB
14Elfogadva4/42ms3372 KiB
15Elfogadva4/42ms3376 KiB
16Részben helyes3/62ms3372 KiB
17Részben helyes3/62ms3500 KiB