New Year Tree

The New Year holidays are over, but Resha doesn’t want to throw away the New Year tree. He invited his best friends Kerim and Gural to help him to redecorate the New Year tree.

The New Year tree is an undirected tree with n vertices and root in the vertex 1.

You should process the queries of the two types:

  1. Change the colours of all vertices in the subtree of the vertex v to the colour c.
  2. Find the number of different colours in the subtree of the vertex v.

Input

The first line contains two integers n, m (1 ≤ n, m ≤ 4·105) — the number of vertices in the tree and the number of the queries.

The second line contains n integers c i (1 ≤ c i ≤ 60) — the colour of the i-th vertex.

Each of the next n - 1 lines contains two integers x j, y j (1 ≤ x j, y j ≤ n) — the vertices of the j-th edge. It is guaranteed that you are given correct undirected tree.

The last m lines contains the description of the queries. Each description starts with the integer t k (1 ≤ t k ≤ 2) — the type of the k-th query. For the queries of the first type then follows two integers v k, c k (1 ≤ v k ≤ n, 1 ≤ c k ≤ 60) — the number of the vertex whose subtree will be recoloured with the colour c k. For the queries of the second type then follows integer v k (1 ≤ v k ≤ n) — the number of the vertex for which subtree you should find the number of different colours.

Output

For each query of the second type print the integer a — the number of different colours in the subtree of the vertex given in the query.

Each of the numbers should be printed on a separate line in order of query appearing in the input.

Examples

input

7 10
1 1 1 1 1 1 1
1 2
1 3
1 4
3 5
3 6
3 7
1 3 2
2 1
1 4 3
2 1
1 2 5
2 1
1 6 4
2 1
2 2
2 3

output

2
3
4
5
1
2

input

23 30
1 2 2 6 5 3 2 1 1 1 2 4 5 3 4 4 3 3 3 3 3 4 6
1 2
1 3
1 4
2 5
2 6
3 7
3 8
4 9
4 10
4 11
6 12
6 13
7 14
7 15
7 16
8 17
8 18
10 19
10 20
10 21
11 22
11 23
2 1
2 5
2 6
2 7
2 8
2 9
2 10
2 11
2 4
1 12 1
1 13 1
1 14 1
1 15 1
1 16 1
1 17 1
1 18 1
1 19 1
1 20 1
1 21 1
1 22 1
1 23 1
2 1
2 5
2 6
2 7
2 8
2 9
2 10
2 11
2 4

output

6
1
3
3
2
1
2
3
5
5
1
2
2
1
1
1
2
3

Solution:

#include <bits/stdc++.h>

using namespace std;

const int N = 400010;

vector <int> g[N];
int pos[N], to[N];
int kw = 0, w[N];

void dfs(int v, int pr) {
pos[v] = kw;
w[kw++] = v;
for (int j = 0; j < (int) g[v].size(); j++) {
    int u = g[v][j];
    if (u != pr) {
      dfs(u, v);
    }
  }
  to[v] = kw - 1;
}

long long a[4 * N];
bool put[4 * N];
int color[N];

void build(int x, int l, int r) {
  if (l < r) {
    int y = (l + r) >> 1;
build(x + x, l, y);
build(x + x + 1, y + 1, r);
a[x] = a[x + x] | a[x + x + 1];
put[x] = false;
} else {
a[x] = 1LL << color[w[l]];
    put[x] = true;
  }
}

inline void push(int x) {
  if (put[x]) {
    a[x + x] = a[x + x + 1] = a[x];
    put[x + x] = put[x + x + 1] = true;
    put[x] = false;
  }
}

inline void gather(int x) {
  a[x] = a[x + x] | a[x + x + 1];
}

void modify(int x, int l, int r, int ll, int rr, long long v) {
  if (r < ll || rr < l) {
    return;
  }
  if (ll <= l && r <= rr) {
    a[x] = v;
    put[x] = true;
    return;
  }
  push(x);
  int y = (l + r) >> 1;
modify(x + x, l, y, ll, rr, v);
modify(x + x + 1, y + 1, r, ll, rr, v);
gather(x);
}

long long get(int x, int l, int r, int ll, int rr) {
if (r < ll || rr < l) {
    return 0;
  }
  if (ll <= l && r <= rr) {
    return a[x];
  }
  push(x);
  int y = (l + r) >> 1;
long long res = get(x + x, l, y, ll, rr);
res |= get(x + x + 1, y + 1, r, ll, rr);
gather(x);
return res;
}

int main() {
int n, m;
scanf("%d %d", &n, &m);
for (int i = 0; i < n; i++) {
    scanf("%d", color + i);
  }
  for (int i = 0; i < n; i++) {
    g[i].clear();
  }
  for (int i = 0; i < n - 1; i++) {
    int foo, bar;
    scanf("%d %d", &foo, &bar);
    foo--; bar--;
    g[foo].push_back(bar);
    g[bar].push_back(foo);
  }
  dfs(0, -1);
  build(1, 0, n - 1);
  while (m--) {
    int type;
    scanf("%d", &type);
    if (type == 1) {
      int foo, bar;
      scanf("%d %d", &foo, &bar);
      foo--;
      modify(1, 0, n - 1, pos[foo], to[foo], 1LL << bar);
    } else {
      int foo;
      scanf("%d", &foo);
      foo--;
      long long value = get(1, 0, n - 1, pos[foo], to[foo]);
      printf("%d\n", __builtin_popcountll(value));
    }
  }
  return 0;
}