#include <iostream>
#include <cstring>
#include <algorithm>
#include <cstdio>
#include <queue>
using namespace std;
const int N = 5e3 + 10, M = N * 4;
typedef pair<int, int> PII;
int n, m;
int h[N], e[M], w[M], ne[M], idx;
int belong[N];
int dist[N];
bool st[N];
void add(int a, int b, int c)
{
e[idx] = b, w[idx] = c, ne[idx] = h[a], h[a] = idx ++;
}
int spfa(int u,int v)
{
memset(dist,0x3f,sizeof dist);
dist[u]=0;
queue<int>q;
q.push(u);
st[u]=true;
while(q.size())
{
int t=q.front();
q.pop();
st[t]=false;
for(int i=h[t];i!=-1;i=ne[i])
{
int j=e[i];
if(dist[j]>dist[t]+w[i])
{
dist[j]=dist[t]+w[i];
if(!st[j])
{
q.push(j);
st[j]=true;
}
}
}
}
return dist[v];
}
int main()
{
ios::sync_with_stdio(false);
cin.tie(0);
cout.tie(0);
cin >> n >> m;
memset(h, -1, sizeof h);
for (int i = 1; i <= n; ++ i )
{
int x;
cin >> x;
belong[i] = x;
}
for (int i = 1; i < n; ++ i )
{
int a, b;
cin >> a >> b;
a = belong[a], b = belong[b];
add(a, b, 1), add(b, a, 1);
}
while (m -- )
{
int a, b;
cin >> a >> b;
cout<<spfa(belong[a], belong[b])<<endl;
}
return 0;
}