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
#include <cstdio>
#include <cstring>
#include <vector>
#include <set>
#define MAKS 1000010
#define MOD 1000000007
using namespace std;
set<int> klau[MAKS];
int ok[MAKS];

int n; int M;
int ile;
int pot[MAKS];
int licz(int p)
{
    if(p>n && ile<M)return 0;
    if(ile==M)return pot[n+1-p];
    int wyn=0;
    
    // p <- prawda
    for(int i=0;i<M;i++)
    {
        if(ok[i]>0)continue;
        if(klau[i].find(p)!=klau[i].end()){ok[i]=p;ile++;}
    }
    wyn+=licz(p+1);
    
    // p <- falsz
    for(int i=0;i<M;i++)
    {
        if(ok[i]==p){ok[i]=0;ile--;}
        if(ok[i]>0)continue;
        if(klau[i].find(-p)!=klau[i].end()){ok[i]=p;ile++;}
    }
    wyn=(wyn+licz(p+1))%MOD;
    
    for(int i=0;i<M;i++)
    {
        if(ok[i]==p){ok[i]=0;ile--;}
    }
    
    return wyn;
}
int main()
{
    scanf("%d",&n);
    pot[0]=1;
    for(int i=1;i<=n;i++)pot[i]=(pot[i-1]*2)%MOD;
    M=0; char buf[20];
    while(scanf("%s",buf)==1)
    {
        if(buf[0]=='^')
        {
            M++;
            continue;
        }
        if(buf[0]=='v')continue;
        int pocz=0;
        int czyn=1;
        int num;
        if(buf[pocz]=='(')pocz++;
        if(buf[pocz]=='~'){pocz++; czyn=-1;}
        sscanf(buf+pocz,"x%d",&num);
        klau[M].insert(num*czyn);
    }
    M++;
    
    ile=0;
    printf("%d\n",licz(1));
}