60512023-10-28 22:18:15kristofUtazásszervezés (75 pont)cpp17Wrong answer 8/756ms4040 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]){
                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/03ms1684 KiB
2Wrong answer0/06ms2096 KiB
3Wrong answer0/33ms2208 KiB
4Wrong answer0/43ms2292 KiB
5Accepted4/43ms2500 KiB
6Accepted4/43ms2716 KiB
7Wrong answer0/43ms2800 KiB
8Wrong answer0/43ms2924 KiB
9Wrong answer0/53ms3052 KiB
10Wrong answer0/53ms3152 KiB
11Wrong answer0/64ms3240 KiB
12Wrong answer0/64ms3448 KiB
13Wrong answer0/64ms3448 KiB
14Wrong answer0/64ms3456 KiB
15Wrong answer0/66ms3788 KiB
16Wrong answer0/66ms3856 KiB
17Wrong answer0/66ms4040 KiB