93552024-02-21 08:48:43Leventusz09Kert (75 pont)csharpElfogadva 75/75365ms66848 KiB
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Kert{
    class Program{
        static void Main(){
            string[] in1 = Console.ReadLine().Split();
            int N = int.Parse(in1[0]),
                M = int.Parse(in1[1]),
                P = int.Parse(in1[2]);

            //int[][] matrix = new int[N][];
            int[] temp, 
                row;

            int tmax, 
                last, 
                lasti;
            // tmi = 0;
            int o1 = 0, o2 = 0;
            for(int i=0, j; i<N; i++){
                //matrix[i] = new int[M];
                row = Console.ReadLine().Split().Select(int.Parse).ToArray();
                tmax = 0; temp = new int[P];
                last = -1; lasti = 1;
                for(j=0; j<M; j++) {
                    temp[row[j]-1]++;
                    if (temp[row[j] - 1] > tmax){
                        tmax = temp[row[j] - 1];
                        //tmi = row[i];
                    }
                    if(row[j] == last){
                        lasti++;
                        if (lasti > o2) o2 = lasti;
                    }else{
                        lasti = 1;
                    }
                    last = row[j];
                }
                if (tmax > M / 2) o1++;
            }
            Console.WriteLine("{0}\n{1}", o1, o2);
        }
    }
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base75/75
1Elfogadva0/030ms22172 KiB
2Elfogadva0/0354ms27904 KiB
3Elfogadva4/430ms22836 KiB
4Elfogadva4/430ms22860 KiB
5Elfogadva4/432ms30088 KiB
6Elfogadva4/434ms30520 KiB
7Elfogadva4/434ms30980 KiB
8Elfogadva4/434ms31372 KiB
9Elfogadva4/434ms31388 KiB
10Elfogadva4/443ms33652 KiB
11Elfogadva6/639ms32364 KiB
12Elfogadva6/648ms27200 KiB
13Elfogadva6/682ms26552 KiB
14Elfogadva6/6365ms29476 KiB
15Elfogadva6/6337ms66848 KiB
16Elfogadva6/6363ms30364 KiB
17Elfogadva7/7211ms29308 KiB