60492023-10-28 22:14:53kristofUtazásszervezés (75 pont)cpp17Wrong answer 15/756ms3916 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] += m;
                output++;
                break;
            }
        }
    }
    cout << output << endl;

    return 0;
}

/*2 10 4 6
1 2 2 5 6 7*/
SubtaskSumTestVerdictTimeMemory
base15/75
1Accepted0/03ms1812 KiB
2Wrong answer0/06ms2224 KiB
3Accepted3/33ms2392 KiB
4Accepted4/43ms2436 KiB
5Accepted4/42ms2516 KiB
6Accepted4/43ms2648 KiB
7Wrong answer0/43ms3012 KiB
8Wrong answer0/43ms3080 KiB
9Wrong answer0/53ms3168 KiB
10Wrong answer0/53ms3200 KiB
11Wrong answer0/64ms3280 KiB
12Wrong answer0/64ms3364 KiB
13Wrong answer0/64ms3572 KiB
14Wrong answer0/66ms3668 KiB
15Wrong answer0/66ms3660 KiB
16Wrong answer0/66ms3916 KiB
17Wrong answer0/66ms3912 KiB