#include using namespace std; #define rep(i,n) for (int i = 0; i < (n); ++i) using ll = long long; int ctoi(char c){return c-'0';} ll ctoll(char c){return c-'0';} struct UnionFind{ vector par,siz,dig; //閉路の有無 bool has_loop = false; int loop_count = 0; //初期化 UnionFind(int n) : par(n, -1) , siz(n, 1), dig(n, 0) {} //根を求める int root(int x){ if(par[x] == -1)return x; else return par[x] = root(par[x]); } //xとyが同じグループに属するかどうか(根が一致するかどうか) bool issame(int x, int y){ return root(x) == root(y); } //xを含むグループとyを含むグループを合併する bool unite(int x, int y){ dig[x]++;dig[y]++; //次数記録しておく x = root(x); y = root(y); if(x == y) { has_loop = true; loop_count++; return false; } if(siz[x] < siz[y]) swap(x,y); par[y] = x; siz[x] += siz[y]; return true; } //xを含むグループのサイズ int size(int x){ return siz[root(x)]; } //各点の次数を返す int digree(int x){ return dig[x]; } }; int main(){ int n,m; cin >> n >> m; vectorc(n); rep(i,n){ cin >> c[i]; c[i]--; } UnionFind uf(n); rep(i,m){ int u,v; cin >> u >> v; u--;v--; if(c[u] == c[v])uf.unite(u,v); } vector >cr(n); rep(i,n){ if(!cr[c[i]].count(uf.root(i))){ cr[c[i]].insert(uf.root(i)); } } int ans = 0; rep(i,n){ ans += max((int)cr[i].size()-1,0); } cout << ans << endl; }