You are given an array $A$ with $n$ integers. You are asked to perform $q$ queries on this array. Queries can be of two types:
- q i j: Within the interval $[i, j]$, find the number of distinct multiples of 2 and 3, but not both.
- u p v: Update the value of the array at index $p$ with the value $v$, that is set $A[p] = v$.
You must perform these queries in the order given in the input. In particular, each query of type 'q' must consider all updates of type 'u' that precede the query.
Write a program to solve this problem efficiently.