35582023-02-28 21:58:11Zoli9Kert (75 pont)cpp17Accepted 75/75246ms4016 KiB
//HZsófi

#include <bits/stdc++.h>
using namespace std;

int main() {
	int n, m, sz;
	cin>>n>>m>>sz;
	int szaml=0;
	int szaml2=0;
	for(int i=1; i<n+1; i++){
		int azon=1;
		int az=0;
		map<int, int>szin;
		for(int j=1; j<m+1; j++){
			int a;
			cin>>a;
			szin[a]++;
			if(az==a){
				azon++;
			}
			else{
				if(szaml2<azon){
					szaml2=azon;
				}
				azon=1;
				az=a;
			}
			
		}
		if(szaml2<azon){
			szaml2=azon;
				}
		int maxi=0;
		for(auto x: szin){
			if(maxi<x.second){
				maxi=x.second;
			}
		}
		if(maxi>m/2){
			szaml++;
		}
	}
cout<<szaml<<endl<<szaml2;
}
SubtaskSumTestVerdictTimeMemory
base75/75
1Accepted0/03ms1684 KiB
2Accepted0/0229ms2092 KiB
3Accepted4/43ms2140 KiB
4Accepted4/43ms2348 KiB
5Accepted4/43ms2520 KiB
6Accepted4/43ms2568 KiB
7Accepted4/43ms2564 KiB
8Accepted4/43ms2692 KiB
9Accepted4/43ms3064 KiB
10Accepted4/47ms3236 KiB
11Accepted6/63ms3088 KiB
12Accepted6/612ms3116 KiB
13Accepted6/630ms3380 KiB
14Accepted6/6218ms3652 KiB
15Accepted6/6208ms3604 KiB
16Accepted6/6246ms3676 KiB
17Accepted7/7140ms4016 KiB