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
#include <bits/stdc++.h>
using namespace std;
const int mod = 1e9 + 7;
const int N = 200000 + 500;
long long n,m,ans,res=1;
vector<vector<int>>graph(N,vector<int>());
vector<bool>vis(N,0);
bitset<N>zar;

long long  pot(long long a, long long b, long long c) {
    int w = 1;
    while (b > 0) {
        if (b & 1) w = (w * a) % c;
        a = (a * a) % c;
        b =b >> 1;
    }
    return w;
}

void dfs(int v){
    vis[v]=1;
    for(auto x : graph[v]){
        if(!vis[x]) dfs(x);
    }
}
int main() {
    ios_base::sync_with_stdio(0);
    cin.tie(0);
    cin >> n >> m;
    for(int i=0;i<n;i++){
        bool a;
        cin >> a;
        if(a)zar.set(i);
        else zar.reset(i);
    }
    for(int i=0;i<m;i++){
        int a,b;
        cin >> a >> b;
        graph[a-1].push_back(b-1);
        graph[b-1].push_back(a-1);
    }
    for(int i=0;i<n;i++){
        if(!vis[i]){
            ans++;
            dfs(i);
        }
    }
    for(int i=0;i<ans;i++){
        res = (2 * res) % mod;
    }
    cout << res;
    return 0;
}