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
#include<bits/stdc++.h>
using namespace std;

vector<int> ciag;
vector<pair<int,int>>rozkazy;
vector<int> wyn;
int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int n;
    cin >> n;
    for(int i=0;i<n;i++)
        ciag.push_back(0);
    int m;
    cin >> m;
    int a,b;
    for(int i=0;i<m;i++)
    {
        cin >> a >> b;
        rozkazy.push_back({a,b});
    }
    for(int i=1;i<=n;i++)
    {
        ciag[n-i]=1;
        int wynP=0;
        do
        {
            vector<int> pom(ciag);
            // for(auto x:ciag)
            //     cout << x << " ";
            // cout << "\n";
            for(auto x:rozkazy)
            {
                if(pom[x.first-1]==1 && pom[x.second-1]==0)
                    swap(pom[x.first-1],pom[x.second-1]);
            }
            // for(auto x:pom)
            //     cout << x << " ";
            // cout << "\n";
            int p=pom[0];
            for(auto x:pom)
            {
                if(x==0 && p==1)
                {
                    p=2;
                }
                if(p==2 && x==1)
                {
                    wynP--;
                    break;
                }
                if(x==1)
                    p=1;
            }
            wynP++;
        }while(next_permutation(ciag.begin(),ciag.end()));
        wyn.push_back(wynP);
    }
    // for(auto x:wyn)
    //     cout << x << " ";
    // cout << "\n";
    for(auto x:wyn)
        cout << x%2 << " ";
    cout << "\n";
}