46912023-03-31 09:07:12TortelliniJrLeghosszabb béke (75 pont)csharpHibás válasz 42/75192ms34244 KiB
using System;
using System.Linq;
namespace LeghosszabbBeke
{
    class Program
    {
        static void Main(string[] args)
        {
            int[] inp = Console.ReadLine().Split().Select(int.Parse).ToArray();
            int[] napok = new int[inp[0]];
            int[] temp = new int[2];
            for (int i = 0; i < inp[1]; i++)
            {
                temp = Console.ReadLine().Split().Select(int.Parse).ToArray();
                napok[temp[0]]++;
                napok[temp[1]]--;
            }
            int counter = 0;
            int longestpeace = 0;
            int currentpeace = 0;
            int longestbegin = 0;
            for (int i = 0; i < inp[0]; i++)
            {
                if (napok[i] > 0)
                {
                    counter += napok[i];
                }
                if (counter == 0)
                {
                    currentpeace++;
                }
                else
                {
                    if (currentpeace > longestpeace)
                    {
                        longestpeace = currentpeace;
                        longestbegin = i - currentpeace;
                    }
                    currentpeace = 0;
                }
                if (napok[i] < 0)
                {
                    counter += napok[i];
                }
            }
            if (currentpeace > longestpeace)
            {
                longestpeace = currentpeace;
                longestbegin = inp[0] + 1 - currentpeace;
            }
            if (longestpeace == 0)
            {
                Console.WriteLine("-1");
            }
            else
            {
                Console.WriteLine(longestpeace + 1 + " " + (longestbegin - 1));
            }
        }
    }
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base42/75
1Hibás válasz0/032ms22256 KiB
2Elfogadva0/0192ms30812 KiB
3Futási hiba0/332ms22160 KiB
4Hibás válasz0/332ms23036 KiB
5Elfogadva3/330ms23564 KiB
6Hibás válasz0/330ms23656 KiB
7Elfogadva3/329ms23588 KiB
8Elfogadva4/430ms23968 KiB
9Elfogadva4/430ms24372 KiB
10Elfogadva4/430ms24752 KiB
11Elfogadva4/441ms27636 KiB
12Elfogadva4/443ms28728 KiB
13Elfogadva4/439ms27444 KiB
14Elfogadva4/441ms28204 KiB
15Elfogadva4/445ms29224 KiB
16Futási hiba0/432ms24684 KiB
17Futási hiba0/432ms25332 KiB
18Futási hiba0/434ms25456 KiB
19Elfogadva4/4181ms34244 KiB
20Futási hiba0/432ms25860 KiB
21Futási hiba0/432ms25844 KiB
22Futási hiba0/432ms26368 KiB