24402023-01-13 10:09:49rennTom és Jerry 3cpp11Hibás válasz 44/50170ms7900 KiB
#include    <bits/stdc++.h>
using namespace std;

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

inline int bfs(gr &graf, int kezdo, vector<int> &tavok)
{
    queue<int> next;
    next.push(kezdo);

    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;
}

inline int bfsm(gr &graf, int kezdo)
{
    queue<int> next;
    next.push(kezdo);
    vector<int> tavok(graf.size(), -1);

    int i, j;
    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;
        }
    }

    j = tavok[i]/2;
 
    j = (j & 1)^1 ? j+1 : j;

    return j;
}

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);
    stack<int> jok;

    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;
            jok.push(x);
        }
    }

    if(!jok.empty())
    {
        int m = jok.top(), l;
        jok.pop();
        while(!jok.empty())
        {
            l = jok.top();
            m = tomtavok[m] > tomtavok[l] ? m : l;
            jok.pop();
        }

        return tomtavok[m];
    }
    return tomtavok[i];
}

int main()
{
    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> tomtavok(n, -1);
        tomtavok[t] = 0;

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

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

        }

        nn = t;
        
        nn = bfs(graf, nn, tomtavok);

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

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

        kozep = bfsm(graf, nn);

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

    return 0;
}
RészfeladatÖsszpontTesztVerdiktIdőMemória
base44/50
1Elfogadva0/03ms1996 KiB
2Elfogadva0/03ms2148 KiB
3Elfogadva5/52ms2344 KiB
4Elfogadva1/13ms2316 KiB
5Hibás válasz0/13ms2444 KiB
6Elfogadva1/13ms2648 KiB
7Elfogadva1/13ms2848 KiB
8Hibás válasz0/13ms2884 KiB
9Hibás válasz0/13ms3016 KiB
10Elfogadva1/13ms3252 KiB
11Elfogadva2/23ms3324 KiB
12Elfogadva2/23ms3348 KiB
13Elfogadva1/13ms3428 KiB
14Elfogadva2/2167ms6144 KiB
15Elfogadva2/2156ms5152 KiB
16Elfogadva2/2170ms6576 KiB
17Elfogadva2/2158ms7900 KiB
18Elfogadva2/2167ms6412 KiB
19Elfogadva2/2168ms6500 KiB
20Elfogadva2/2107ms7772 KiB
21Elfogadva2/2153ms5156 KiB
22Elfogadva2/2152ms5160 KiB
23Elfogadva3/3158ms7796 KiB
24Elfogadva2/2166ms6408 KiB
25Elfogadva3/3165ms6436 KiB
26Elfogadva2/2158ms7780 KiB
27Elfogadva2/2153ms5268 KiB
28Hibás válasz0/3151ms5260 KiB