92552024-02-19 11:47:26Leventusz09Utazásszervezés (75 pont)csharpWrong answer 8/7541ms28380 KiB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Utazásszervezés{
    class Program{
        static void Main(){
            int[] in1 = Console.ReadLine().Split().Select(int.Parse).ToArray();
            int N = in1[0],  //idegenvezetők
                K = in1[1],  //szezon
                M = in1[2],  //utazások hossza
                C = in1[3];  //utazások
            int[] Ig = Console.ReadLine().Split().Select(int.Parse).ToArray();
            /* V1 int temp = N;
            int o1 = 0;
            int[] ret = new int[K];

            for (int i = 0, j; i < C; i++){
                if (i > 0) for (j = Ig[i - 1] - 1; j < Ig[i] - 1; j++) temp += ret[j];
                if (temp > 0){
                    o1++;
                    temp--;
                    if (Ig[i] - 1 + M < K) ret[Ig[i] - 1 + M]++;
                }
            }*/

            int o1 = 0;
            int[] b = new int[N];
            for(int i=0; i<C; i++){
                for(int j=0; j<N; j++){ 
                    if(b[j] < Ig[i]){
                        b[j] = Ig[i] + M;
                        o1++;
                        break;
                    }
                }
            }

            Console.WriteLine(o1);
        }
    }
}
SubtaskSumTestVerdictTimeMemory
base8/75
1Accepted0/032ms21976 KiB
2Wrong answer0/041ms25000 KiB
3Wrong answer0/332ms22880 KiB
4Wrong answer0/432ms22740 KiB
5Accepted4/432ms23216 KiB
6Accepted4/432ms23580 KiB
7Wrong answer0/432ms23872 KiB
8Wrong answer0/437ms24736 KiB
9Wrong answer0/537ms25488 KiB
10Wrong answer0/537ms25988 KiB
11Wrong answer0/637ms26724 KiB
12Wrong answer0/639ms27208 KiB
13Wrong answer0/641ms27168 KiB
14Wrong answer0/641ms27760 KiB
15Wrong answer0/641ms27480 KiB
16Wrong answer0/641ms27988 KiB
17Wrong answer0/641ms28380 KiB