29142023-02-03 08:21:02tamasmarkRácsháló gráfcpp17Accepted 50/5068ms4192 KiB
// racshalosgraf.cpp : This file contains the 'main' function. Program execution begins and ends there.
//

#include <iostream>
#include <deque>
#include <vector>
#include <queue>

using namespace std;

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

int n, m, i, j, db, mini, l, a, b,ujsz,kezd,akt,e;
vector<adat>x;
vector<int>megold;
queue<int>q;

int main()
{
    cin >> n >> m>>ujsz;
    x.resize(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 (l = 1; l <= ujsz; ++l)
    {
        cin >> a >> b;
        x[a].sz.push_back(b);
        x[b].sz.push_back(a);
        mini = 0;
        for (i = 1; i <= n * m; ++i)
        {
            kezd = i;
            q.push(kezd);
            x[kezd].lat = true;
            x[kezd].tav = 0;
            while (!q.empty())
            {
                akt = q.front();
                q.pop();
                for (auto& e : x[akt].sz)
                {
                    if (!x[e].lat)
                    {
                        x[e].lat = true;
                        x[e].tav = x[akt].tav + 1;
                        if (x[e].tav > mini)
                        {
                            mini = x[e].tav;
                        }
                        q.push(e);
                    }
                }
            }
            for (j = 1; j <= n * m; ++j)
            {
                x[j].lat = false;
                x[j].tav = 0;
            }
        }
        megold.push_back(mini);
        
    }
    for (i = 0; i<megold.size(); ++i)
    {
        cout << megold[i] << "\n";
    }
    return 0;
}
/*
3 4 4
1 6
7 10
2 12
4 9


*/
// 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
SubtaskSumTestVerdictTimeMemory
base50/50
1Accepted0/03ms1816 KiB
2Accepted0/067ms2020 KiB
3Accepted2/23ms2220 KiB
4Accepted2/23ms2452 KiB
5Accepted2/23ms2512 KiB
6Accepted2/23ms2760 KiB
7Accepted2/24ms2848 KiB
8Accepted2/24ms2848 KiB
9Accepted2/24ms3080 KiB
10Accepted2/24ms3184 KiB
11Accepted2/24ms3560 KiB
12Accepted2/212ms3660 KiB
13Accepted3/332ms3740 KiB
14Accepted3/36ms3536 KiB
15Accepted3/332ms3668 KiB
16Accepted3/36ms3752 KiB
17Accepted3/328ms3888 KiB
18Accepted3/312ms3976 KiB
19Accepted3/33ms3960 KiB
20Accepted3/33ms4080 KiB
21Accepted3/314ms4072 KiB
22Accepted3/368ms4192 KiB