72162024-01-03 18:18:45czitaA lehető legkevesebb átszállás (50 pont)csharpWrong answer 47/5048ms31664 KiB
using System;
using System.Collections.Generic;


namespace átszállás
{
    internal class Program
    {



        static int[] be()
        {
            string[] sts = Console.ReadLine().Split(' ');
            int[] st = new int[3];
            st[1] = int.Parse(sts[1]);
            st[0] = int.Parse(sts[0]);
            return st;
        }
        static void Main(string[] args)
        {
            int[] st = be();//alapadatok beolvasása
            int N = st[1];
            int M = st[0];
            st = be();//első vonat beolvasása
            List<int[]> v = new List<int[]>();
            st[2] = 1;

            if (st[0] != 1) Console.WriteLine(-1);//nem a kezdőállomásról indulaz elős vonat
            else
            {
                int indulas = st[0], erkezes = st[1], vonat = 1;
                for (int i = 1; i <= M; i++)
                {
                    if (indulas == st[0])
                    {
                        if (erkezes < st[1])
                        {
                            erkezes = st[1];//az adott állomásról a legtávolabb menő vonat
                            vonat = i;
                        }
                    }
                    else
                    {
                        int[] t = new int[3];
                        t[0] = indulas;
                        t[1] = erkezes;
                        t[2] = vonat;
                        v.Add(t);
                        indulas = st[0];
                        erkezes = st[1];
                        vonat = i;

                    }
                    if (i < M) st = be();
                }

                int[] t1 = new int[3];
                t1[0] = indulas;
                t1[1] = erkezes;
                t1[2] = vonat;
                v.Add(t1);
                //belső intervallumok kizárása
                List<int[]> v2 = new List<int[]>();
                v2.Add(v[0]);
                erkezes = v[0][1];
                foreach (var item in v)
                {
                    if (item[1] > erkezes)
                    {
                        v2.Add(item);
                        erkezes = item[1];
                    }
                }
                //a legkedvezőbb intevallumok kiváasztása
                List<int[]> v3 = new List<int[]>();
                v3.Add(v2[0]);
                erkezes = v2[0][1];
                int maxi = 1;
                for (int i = 1; i < v2.Count; i++)
                {
                    if (v2[i][0]<=erkezes)
                    {
                        if (v2[i][1]>v2[maxi][1])
                        {
                            maxi = i;
                        }
                    }
                    else
                    {
                        v3.Add(v2[maxi]);
                        erkezes = v2[maxi][1];
                        maxi = i;
                    }
                }
                v3.Add(v2[maxi]);
                //van e átfedés
                int cv = 1;
                while (cv < v3.Count && v3[cv][0] <= v3[cv - 1][1])
                {
                    cv++;
                }
                if (cv < v3.Count)
                {
                    Console.WriteLine(-1);
                }
                else
                {
                    Console.WriteLine(v3.Count - 1);
                    foreach (var item in v3)
                    {
                        Console.Write(item[2] + " ");
                    }
                    Console.WriteLine();
                }
            }

            Console.ReadKey();
        }
    }
}


SubtaskSumTestVerdictTimeMemory
base47/50
1Accepted0/029ms20552 KiB
2Accepted0/048ms27680 KiB
3Wrong answer0/129ms21664 KiB
4Accepted1/128ms22080 KiB
5Runtime error0/232ms21952 KiB
6Accepted2/229ms22704 KiB
7Accepted2/232ms23400 KiB
8Accepted2/232ms23952 KiB
9Accepted2/232ms24512 KiB
10Accepted2/235ms25236 KiB
11Accepted2/237ms26128 KiB
12Accepted2/237ms27372 KiB
13Accepted2/230ms24504 KiB
14Accepted2/232ms25176 KiB
15Accepted2/237ms26248 KiB
16Accepted2/239ms28148 KiB
17Accepted2/241ms29136 KiB
18Accepted2/245ms30448 KiB
19Accepted2/246ms31304 KiB
20Accepted2/246ms31164 KiB
21Accepted2/248ms31316 KiB
22Accepted2/248ms31372 KiB
23Accepted2/246ms31664 KiB
24Accepted2/246ms31432 KiB
25Accepted2/246ms31600 KiB
26Accepted2/246ms31580 KiB
27Accepted2/246ms31352 KiB
28Accepted2/246ms31412 KiB