#include <bits/stdc++.h>
using namespace std;
using ll = long long;
using ld = long double;
using db = double;
using ii = pair<int, int>;
using pl = pair<ll, ll>;
using vi = vector<int>;
using vl = vector<ll>;
using vii = vector<ii>;
using vpl = vector<pl>;
#define mp make_pair
#define pb push_back
#define pp pop_back
#define ff first
#define ss second
#define lb lower_bound
#define ub upper_bound
#define all(x) (x).begin() , (x).end()
ld dist(ld x, ld y, ld a, ld b) { return sqrt((x-a)*(x-a) + (y-b)*(y-b)); }
ll gcd(ll a , ll b){ return b ? gcd(b , a % b) : a ;}
ll lcm(ll a , ll b){ return (a * b) / gcd(a , b);}
ll fact(ll n) { return n > 1?(n * fact(n-1)):1;}
const ll MOD = 1000*1000*1000+7;
const long double EPS = 0.000000001;
const double PI = 3.14159265358979323846;
const long long INF = 1e18;
/// const int nx[4] = {0, 0, -1, 1}, ny[4] = {1, -1, 0, 0};
const int nx[8] = {2, 2, 1, -1, -2, -2, 1, -1};
const int ny[8] = {1, -1, 2, 2, -1, 1, -2, -2};
ll n, r, q, home[200005], st[524][2*200005];
vector<ll>adj[200005]; ll ans[20000][10000];
ll in[200005], out[200005], timer=0;
void update(ll v, ll l, ll r, ll ind, ll h) {
if(l==r) { st[h][v]++; return; }
ll mid=(l+r)/2;
if(ind<=mid) update(v*2, l, mid, ind, h);
else update(v*2+1, mid+1, r, ind, h);
st[h][v]=st[h][v*2]+st[h][v*2+1];
}
void dfs(ll v, ll p) {
in[v]=timer++;
for(auto u:adj[v]) {
if(u==p) continue;
dfs(u, v);
}
out[v]=timer-1;
}
ll query(ll v, ll l, ll r, ll lo, ll hi, ll h) {
if(l>hi||r<lo) return 0;
if(l>=lo&&r<=hi) return st[h][v];
return query(v*2, l, (l+r)/2, lo, hi, h)+query(v*2+1, (l+r)/2+1, r, lo, hi, h);
}
int32_t main()
{
ios::sync_with_stdio(0); cin.tie(0);cout.tie(0);
cin>>n>>r>>q; cin>>home[1];
for(ll l=2;l<=n;l++) {
ll a; cin>>a; cin>>home[l]; adj[a].pb(l);
}
dfs(1, 0); ll s=n;
while(__builtin_popcount(s)!=1) s++;
for(ll l=1;l<=n;l++) update(1, 1, s, in[l], home[l]);
for(ll l=1;l<=n;l++) {
for(ll i=1;i<=r;i++) {
if(home[l]==i) continue;
ans[home[l]][i]+=query(1, 1, s, in[l], out[l], i);
}
}
while(q--) {
ll r1, r2; cin>>r1>>r2;
cout<<ans[r1][r2]<<'\n'<<flush;
}
return 0;
}
Compilation message
/usr/bin/ld: failed to convert GOTPCREL relocation; relink with --no-relax
collect2: error: ld returned 1 exit status