60542023-10-28 22:32:48kristofUtazásszervezés (75 pont)cpp17Wrong answer 8/756ms4304 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
base8/75
1Accepted0/03ms1832 KiB
2Wrong answer0/06ms2152 KiB
3Wrong answer0/33ms2196 KiB
4Wrong answer0/42ms2284 KiB
5Accepted4/43ms2336 KiB
6Accepted4/43ms2660 KiB
7Wrong answer0/43ms2864 KiB
8Wrong answer0/43ms2864 KiB
9Wrong answer0/53ms2988 KiB
10Wrong answer0/53ms3080 KiB
11Wrong answer0/64ms3292 KiB
12Wrong answer0/64ms3516 KiB
13Wrong answer0/64ms3484 KiB
14Wrong answer0/64ms3580 KiB
15Wrong answer0/66ms3704 KiB
16Wrong answer0/66ms4044 KiB
17Wrong answer0/66ms4304 KiB