2069 2022. 12. 16 12:20:02 bzsofia Rácsháló gráf cpp11 Elfogadva 50/50 65ms 4040 KiB
// racshalo graf.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
//#include <fstream>
#include <vector>
#include <queue>
#include <cmath>

using namespace std;

//ifstream fin("be.in");

struct adat
{
    int tav;
    bool lat;
    vector <int> sz;
};

int i, n, m, k, j, db, a, b, maxtav, kezd, akt, l;
queue <int> q;

int main()
{
    cin >> n >> m >> k;
    vector <adat> x(n * m + 1);

    for (i = 1; i <= n; ++i)
    {
        for (j=1; j<=m; ++j)
        {
            ++db;
            if (i > 1) x[db].sz.push_back(db - m);
            if (j > 1) x[db].sz.push_back(db - 1);
            if (j < m) x[db].sz.push_back(db + 1);
            if (i < n) x[db].sz.push_back(db + m);
        }
    }

    for (i = 1; i <= k; ++i)
    {
        cin >> a >> b;

        x[a].sz.push_back(b);
        x[b].sz.push_back(a);
        maxtav = 0;

        for (l = 1; l <= n * m; ++l)
        {
            kezd = l;
            q.push(kezd);
            x[kezd].lat = 1;
            while (!q.empty())
            {
                akt = q.front();
                q.pop();
                for (auto& e : x[akt].sz)
                {
                    if (!x[e].lat)
                    {
                        x[e].lat = 1;
                        x[e].tav = x[akt].tav + 1;
                        if (x[e].tav > maxtav) maxtav = x[e].tav;
                        q.push(e);
                    }
                }
            }

            for (j = 1; j <= m * n; ++j)
            {
                x[j].tav = 0;
                x[j].lat = 0;
            }
        }

        cout << maxtav <<"\n";
    }

    return 0;
}

// Run program: Ctrl + F5 or Debug > Start Without Debugging menu
// Debug program: F5 or Debug > Start Debugging menu

// Tips for Getting Started: 
//   1. Use the Solution Explorer window to add/manage files
//   2. Use the Team Explorer window to connect to source control
//   3. Use the Output window to see build output and other messages
//   4. Use the Error List window to view errors
//   5. Go to Project > Add New Item to create new code files, or Project > Add Existing Item to add existing code files to the project
//   6. In the future, to open this project again, go to File > Open > Project and select the .sln file
Részfeladat Összpont Teszt Verdikt Idő Memória
base 50/50
1 Elfogadva 0/0 3ms 1808 KiB
2 Elfogadva 0/0 64ms 2016 KiB
3 Elfogadva 2/2 2ms 2236 KiB
4 Elfogadva 2/2 2ms 2440 KiB
5 Elfogadva 2/2 2ms 2512 KiB
6 Elfogadva 2/2 3ms 2740 KiB
7 Elfogadva 2/2 4ms 2948 KiB
8 Elfogadva 2/2 4ms 3180 KiB
9 Elfogadva 2/2 4ms 3268 KiB
10 Elfogadva 2/2 3ms 3436 KiB
11 Elfogadva 2/2 4ms 3552 KiB
12 Elfogadva 2/2 12ms 3520 KiB
13 Elfogadva 3/3 30ms 3624 KiB
14 Elfogadva 3/3 6ms 3516 KiB
15 Elfogadva 3/3 29ms 3524 KiB
16 Elfogadva 3/3 4ms 3640 KiB
17 Elfogadva 3/3 27ms 3656 KiB
18 Elfogadva 3/3 10ms 3880 KiB
19 Elfogadva 3/3 2ms 3848 KiB
20 Elfogadva 3/3 3ms 3748 KiB
21 Elfogadva 3/3 13ms 3956 KiB
22 Elfogadva 3/3 65ms 4040 KiB