9612022-02-05 17:27:25Kevinke12Kert (75 pont)cpp14Részben helyes 68/75214ms26000 KiB
#include <iostream>
#include <bits/stdc++.h>
using namespace std;
#define ll long long

ll N, M, P;
ll t[105][30000];

int main()
{
    cin >> N >> M >> P;
    for(int i = 0; i < N; i++)
    {
        for(int j = 0; j < M;j++)
            cin >> t[i][j];
    }

    //1. subtask
    int ans1=0;
    for(int i = 0; i < N; i++)
    {
        map<ll, int> m;
        for(int j = 0;j < M; j++)
            m[t[i][j]]++;
        int mDb=0;
        for(auto aktErt:m)
        {
            mDb = max(mDb, aktErt.second);
        }
        if(mDb>M-mDb)
            ans1++;
    }

    //2. subtask
    int ans2=0;
    for(int i = 0; i < N; i++)
    {
        int aktDb=1;
        for(int j = 1;j < M; j++)
        {
            if(t[i][j-1]==t[i][j])
                aktDb++;
            else
            {
                ans2 = max(ans2, aktDb);
                aktDb=1;

            }
        }
    }

    cout << ans1 << "\n";
    cout << ans2 << "\n";
    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base68/75
1Elfogadva0/02ms1760 KiB
2Elfogadva0/0211ms14108 KiB
3Részben helyes2/41ms5768 KiB
4Elfogadva4/41ms5764 KiB
5Részben helyes2/41ms5800 KiB
6Elfogadva4/41ms5804 KiB
7Elfogadva4/41ms5808 KiB
8Elfogadva4/41ms5816 KiB
9Elfogadva4/42ms5840 KiB
10Elfogadva4/44ms6072 KiB
11Elfogadva6/62ms5916 KiB
12Elfogadva6/68ms6444 KiB
13Elfogadva6/628ms7820 KiB
14Elfogadva6/6196ms18596 KiB
15Részben helyes3/6189ms16808 KiB
16Elfogadva6/6214ms26000 KiB
17Elfogadva7/7131ms23712 KiB