24272023-01-13 09:21:15rennTom és Jerry 3cpp11Wrong answer 10/50171ms8556 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);
    vector<int> prev(graf.size(), -1);

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

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

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

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

    return j+1;
}

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

    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;
}
SubtaskSumTestVerdictTimeMemory
base10/50
1Accepted0/03ms1812 KiB
2Accepted0/03ms2068 KiB
3Wrong answer0/52ms2260 KiB
4Wrong answer0/13ms2472 KiB
5Wrong answer0/13ms2620 KiB
6Wrong answer0/13ms2824 KiB
7Wrong answer0/13ms3028 KiB
8Accepted1/13ms3236 KiB
9Wrong answer0/13ms3312 KiB
10Accepted1/13ms3444 KiB
11Accepted2/23ms3540 KiB
12Wrong answer0/23ms3784 KiB
13Wrong answer0/13ms3992 KiB
14Wrong answer0/2165ms6760 KiB
15Wrong answer0/2156ms5656 KiB
16Accepted2/2171ms6880 KiB
17Wrong answer0/2157ms8160 KiB
18Wrong answer0/2164ms6756 KiB
19Accepted2/2168ms7140 KiB
20Wrong answer0/2107ms8396 KiB
21Wrong answer0/2158ms5640 KiB
22Accepted2/2155ms5660 KiB
23Wrong answer0/3162ms8556 KiB
24Wrong answer0/2165ms7092 KiB
25Wrong answer0/3167ms7104 KiB
26Wrong answer0/2159ms8320 KiB
27Wrong answer0/2152ms5636 KiB
28Wrong answer0/3158ms5672 KiB