1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
#include <cstdio>
#include <vector>
#include <algorithm>
#include <stack>

using namespace std;

struct pracownik
{
    vector<int> chce;
    vector<int> niechce;
    vector<int> sasiad;
    int licznikWatow = 0;
    int stopienWejsciowy = 0;
    int ojciec = -1;
};

int nrSpojnej = 0;
int n;
vector<vector<int>> spojne;
vector<pracownik> firma;
vector<bool> odw;

void oznaczanieDFS(int v, int nrss)
{
    stack<int> S;
    S.push(v);
    odw[v] = true;
    spojne[nrss].push_back(v);

    while(!S.empty())
    {
        int w = S.top();
        S.pop();
        for (int a : firma[w].sasiad)
        {
            if (odw[a] == false)
            {
                S.push(a);
                odw[a] = true;
                spojne[nrss].push_back(a);
            }
        }
    }
}

int wyznaczDyrka(int ss)
{
    int dyrektor = -1;

    /*printf("-- Spojna: %d \n", ss);
    for(auto c : spojne[ss])
        printf("%d ", c + 1);
    printf("\n");*/

    // Liczenie watow w tej ss. Licznik wejsc powinien byc aktualny
    for (auto v : spojne[ss])
    {
        for (auto zly : firma[v].niechce)
            firma[zly].licznikWatow++;
    }

    // Wyznacz dyrektora - w. o st.wej. == 0 i licz.watow == 0
    for (auto v : spojne[ss])
    {
        //printf("[%d]: wat: %d, st: %d\n", v, firma[v].licznikWatow == 0, firma[v].stopienWejsciowy == 0);
        if (firma[v].licznikWatow == 0 && firma[v].stopienWejsciowy == 0)
        {
            dyrektor = v;
            break;
        }
    }
    if (dyrektor == -1)
        return -1;

    // WYZEROWAC LICZNIKI WATOW !!!
    // ZAKTUALIZOWAC LICZNIKI WEJSC

    for(int i = 0; i < n; ++i)
        firma[i].licznikWatow = 0;

    for(auto v : spojne[ss])
    {
        if (find(firma[v].chce.begin(), firma[v].chce.end(), dyrektor) != firma[v].chce.end())
        {
            firma[v].stopienWejsciowy--;
            firma[v].sasiad.erase(find(firma[v].sasiad.begin(), firma[v].sasiad.end(), dyrektor)); // TODO: DODAC SPRAWDZANIE, CZY JEST
        }
        odw[v] = false;
    }

    // WYZNACZ SPOJNE I DAJ OJCA KAZDEMU SZEFOWI (lub -1, jesli gdzies nie ma szefa)
    if (spojne[ss].size() > 0)
    {
        vector<int> ssDoOdw;
        for(auto v : spojne[ss])
        {
            if (v != dyrektor && !odw[v])
            {
                ++nrSpojnej;
                spojne.resize(nrSpojnej);
                ssDoOdw.push_back(nrSpojnej - 1);
                oznaczanieDFS(v, nrSpojnej - 1);
            }
        }

        int dyr;
        for(auto s : ssDoOdw)
        {
            dyr = wyznaczDyrka(s);
            if (dyr == -1)
                return -1;
            firma[dyr].ojciec = dyrektor;
        }
    }

    return dyrektor;
    //spojne[ss].clear();
}

int main()
{
    int m;
    scanf("%d %d", &n, &m);

    firma.resize(n);
    odw.resize(n, false);

    int a, b;
    char c;
    for(int i = 0; i < m; ++i)
    {
        scanf("%d %d %c", &a, &b, &c);
        if (c == 'N')
        {
            firma[a-1].niechce.push_back(b-1);
        }
        else
        {
            firma[a-1].chce.push_back(b-1);
            firma[a-1].sasiad.push_back(b-1);
            firma[b-1].sasiad.push_back(a-1);
            firma[a-1].stopienWejsciowy++;
        }
    }

    ++nrSpojnej;
    spojne.resize(nrSpojnej);

    for(int i = 0; i < n; ++i)
        spojne[0].push_back(i);

    a = wyznaczDyrka(0);
    if (a == -1)
        printf("NIE");
    else
    {
        for(int i = 0; i < n; ++i)
        {
            printf("%d\n", firma[i].ojciec + 1);
        }
    }


    return 0;
}