24712023-01-13 10:59:47rennTom és Jerry 3cpp11Elfogadva 50/5085ms7764 KiB
#include    <bits/stdc++.h>
using namespace std;

#define InTheNameOfGod cin.tie(0); cout.tie(0); ios::sync_with_stdio(0);

typedef vector<vector<int>> gr;
typedef pair<int, int> pii;

inline int bfs(gr &graf, int &kezdo, vector<int> &tavok, bool g)
{
    queue<int> next;
    next.push(kezdo);
    if(g) tavok[kezdo] = 0;

    int i;
    while(!next.empty())
    {
        i = next.front();
        next.pop();

        for(auto &x : graf[i])
        {
            if(tavok[x] > -1) continue;

            next.push(x);
            tavok[x] = tavok[i]+1;
        }
    }

    return i;
}

int jerry(gr &graf, int j, int &t, vector<int> &tomtavok)
{
    vector<int> jertavok(graf.size(), -1);
    jertavok[j] = 0;

    queue<int> next;
    next.push(j);
    int m = j;

    int i;
    while(!next.empty())
    {
        i = next.front();
        next.pop();

        for(auto &x : graf[i])
        {
            if(jertavok[x] > -1 || tomtavok[x] <= jertavok[i]+2) continue;

            next.push(x);
            jertavok[x] = jertavok[i]+1;
            m = tomtavok[m] > tomtavok[x] ? m : x;
        }
    }
    return m > -1 ? tomtavok[m] : tomtavok[i];
}

int main()
{

    InTheNameOfGod

    int T;
    cin >> T;

    int n, t, j, k, nn, a, b;
    int kozep;

    while(T--)
    {
        cin >> n >> t >> j >> k;
        j--;
        t--;
        nn = n-1;

        gr graf(n);
        
        vector<int> tavok(n, -1);

        while(nn--)
        {
            cin >> a >> b;

            a--; b--;
            graf[a].push_back(b);
            graf[b].push_back(a);

        }

        nn = t;
        
        nn = bfs(graf, nn, tavok, true);

        if(tavok[j] == 1)
        {
            cout << "IGEN\n";
            continue;
        }

        if(jerry(graf, j, t, tavok) <= k)
        {
            cout << "IGEN\n";
            continue;
        }

        std::fill(tavok.begin(), tavok.end(), -1);
        kozep = bfs(graf, nn, tavok, false);
        kozep = tavok[kozep]/2;

        cout << (kozep < k ? "IGEN" : "NEM") << "\n";
    }

    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base50/50
1Elfogadva0/03ms1832 KiB
2Elfogadva0/02ms2060 KiB
3Elfogadva5/52ms2104 KiB
4Elfogadva1/13ms2332 KiB
5Elfogadva1/13ms2540 KiB
6Elfogadva1/13ms2744 KiB
7Elfogadva1/13ms2848 KiB
8Elfogadva1/13ms3212 KiB
9Elfogadva1/13ms3068 KiB
10Elfogadva1/13ms3060 KiB
11Elfogadva2/23ms3060 KiB
12Elfogadva2/23ms3160 KiB
13Elfogadva1/13ms3128 KiB
14Elfogadva2/282ms5816 KiB
15Elfogadva2/276ms4804 KiB
16Elfogadva2/285ms6076 KiB
17Elfogadva2/279ms7336 KiB
18Elfogadva2/283ms6064 KiB
19Elfogadva2/285ms6392 KiB
20Elfogadva2/254ms7552 KiB
21Elfogadva2/276ms5108 KiB
22Elfogadva2/275ms5072 KiB
23Elfogadva3/382ms7764 KiB
24Elfogadva2/283ms6332 KiB
25Elfogadva3/381ms6328 KiB
26Elfogadva2/279ms7592 KiB
27Elfogadva2/275ms5080 KiB
28Elfogadva3/375ms5220 KiB