9608 2024. 02. 23 14:23:49 TortelliniJr Kombináció (50) cpp17 Hibás válasz 35/50 3ms 4252 KiB
#include <iostream>
#include <vector>
using namespace std; // c++ my beloved
int main()
{
    int n, m;
    cin >> n >> m; // this i still dont understand
    vector<int> e(m + 1), f(m + 1), g(m + 1);
    for (int i = 0; i < m; i++)
    {
        cin >> e[i]; 
    }
    f = e;
    g = e;
    int c = 0; // what does this do?
    int min = 0, max = 0, cur = 0;
    bool a = false, b = false;
    for (int i = 0; i < m; i++)
    {
        min += i + 1; // doesnt work on Linux for some reason
        max += i + 1 + n - m;
        cur += e[i];
    }
    if (cur == min) // decompilers hate this one simple trick!
    {
        for (int i = 0; i < m; i++)
        {
            cout << i + 1 + n - m;
        }
        a = true;
    }
    if (cur == max)
    {
        for (int i = 0; i < m; i++)
        {
            f[i] = i + 1;
        }
        b = true;
    }
    bool god = false;
    for (int i = m - 1; i >= 0; i--)
    {
        if (e[i] < n - c && !b)
        {
            f[i]++; // DONT ReMOVE!
            for (int u = 1; u <= m - i; u++)
            {
                f[i + u] = f[i] + u; // frankly unsure of what this does
            }
            break; // this is my code atm
        }
        if (e[i] - e[i- 1] > 1 && !god && !a)
        {
            g[i]--;
            god = true;
        }
        c++;
    }
    for (int i = 0; i < m; i++)
    {
        cout << g[i] << " ";
    }
    cout << endl;
    for (int i = 0; i < m; i++)
    {
        cout << f[i] << " ";
    }
}
// TODO: Optimize, remove M00SE
// O(n to the power of n) time complexity
Részfeladat Összpont Teszt Verdikt Idő Memória
base 35/50
1 Elfogadva 0/0 3ms 1816 KiB
2 Hibás válasz 0/0 3ms 2056 KiB
3 Részben helyes 1/2 3ms 2448 KiB
4 Részben helyes 1/2 3ms 2484 KiB
5 Részben helyes 1/2 3ms 2732 KiB
6 Elfogadva 2/2 3ms 2796 KiB
7 Részben helyes 1/2 3ms 2988 KiB
8 Részben helyes 1/2 3ms 3208 KiB
9 Részben helyes 1/2 3ms 3344 KiB
10 Elfogadva 4/4 3ms 3428 KiB
11 Elfogadva 4/4 3ms 3424 KiB
12 Elfogadva 4/4 3ms 3620 KiB
13 Részben helyes 2/4 3ms 3864 KiB
14 Részben helyes 2/4 3ms 3912 KiB
15 Részben helyes 2/4 3ms 3916 KiB
16 Elfogadva 6/6 3ms 4048 KiB
17 Részben helyes 3/6 3ms 4252 KiB