60562023-10-28 22:43:45kristofUtazásszervezés (75 pont)cpp17Accepted 75/756ms3936 KiB
#include <iostream>
#include <algorithm>
#include <string>
#include <vector>

using namespace std;

int main()
{
    int n, k, m, c; // n = idegenvezetok szama, k = szezon hossza, m = utazas hossza, c = csoportok szama
    cin >> n >> k >> m >> c;
    int output = 0;
    vector<int> igenyek(c);
    vector<int> idegenvezetok(n, 0);
    for (int i = 0; i < c; i++)
    {
        cin >> igenyek[i];
    }

    for (int i = 0; i < c; i++){
        for (int j = 0; j < n; j++){
            if (idegenvezetok[j] <= igenyek[i] && igenyek[i] <= k-m+1){
                idegenvezetok[j] = igenyek[i] + m;
                output++;
                break;
            }
        }
    }
    cout << output << endl;

    return 0;
}

/*2 10 4 6
1 2 2 5 6 7*/
SubtaskSumTestVerdictTimeMemory
base75/75
1Accepted0/03ms1808 KiB
2Accepted0/06ms2168 KiB
3Accepted3/32ms2220 KiB
4Accepted4/43ms2432 KiB
5Accepted4/43ms2784 KiB
6Accepted4/42ms2728 KiB
7Accepted4/42ms2856 KiB
8Accepted4/43ms2948 KiB
9Accepted5/53ms3016 KiB
10Accepted5/53ms3124 KiB
11Accepted6/64ms3024 KiB
12Accepted6/64ms3168 KiB
13Accepted6/64ms3248 KiB
14Accepted6/66ms3516 KiB
15Accepted6/66ms3728 KiB
16Accepted6/66ms3680 KiB
17Accepted6/66ms3936 KiB