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 <iostream>
using namespace std;
const int stala=1e7+10;
const int st=1010;
int dp[stala];
int nxt[stala];
int tab[st][2];
int wyn[50];

int main()
{
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cout.tie(0);
    int ile,m;
    cin>>ile>>m;
    for(int i=1;i<=m;i++){
        cin>>tab[i][0]>>tab[i][1];
    }
    for(int i=0;i<(1<<ile);i++){
        dp[i]=1;
    }
    for(int i=1;i<=m;i++){
        for(int j=0;j<(1<<ile);j++){
            if((j&(1<<(tab[i][0]-1)))>0&&(j&(1<<(tab[i][1]-1)))==0){
                int ind=j+(1<<(tab[i][1]-1))-(1<<(tab[i][0]-1));
                nxt[ind]+=dp[j];
            }
            else{
                nxt[j]+=dp[j];
            }
        }
        for(int j=0;j<(1<<ile);j++){
            dp[j]=nxt[j];
            nxt[j]=0;
        }
    }
    for(int i=0;i<(1<<ile);i++){
        int s=0;
        int start=-1,stop=-1;
        bool xyz=true;
        for(int j=0;j<ile;j++){
            if((i&(1<<j))>0){
                s++;
                if(start==-1&&stop==-1){
                    start=j;
                }
                else if(stop!=-1){
                    xyz=false;
                }
            }
            else{
                if(stop==-1&&start!=-1){
                    stop=j;
                }
            }
        }
        if(xyz==true){
            wyn[s]+=dp[i];
        }
    }
    for(int i=1;i<=ile;i++){
        cout<<wyn[i]%2<<" ";
    }

    return 0;
}