60532023-10-28 22:30:19kristofUtazásszervezés (75 pont)cpp17Wrong answer 8/756ms3840 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, 0);
    vector<int> idegenvezetok(n);
    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
1Wrong answer0/03ms1812 KiB
2Wrong answer0/06ms2244 KiB
3Wrong answer0/33ms2300 KiB
4Wrong answer0/43ms2388 KiB
5Accepted4/43ms2512 KiB
6Accepted4/43ms2732 KiB
7Wrong answer0/42ms2840 KiB
8Wrong answer0/43ms2936 KiB
9Wrong answer0/53ms3016 KiB
10Wrong answer0/53ms3148 KiB
11Wrong answer0/64ms3368 KiB
12Wrong answer0/64ms3468 KiB
13Wrong answer0/64ms3556 KiB
14Wrong answer0/66ms3756 KiB
15Wrong answer0/66ms3712 KiB
16Wrong answer0/66ms3712 KiB
17Wrong answer0/66ms3840 KiB