この問題は木の深さを問います。
制約より、与えられるグラフは木構造をなしていることが見て取れます。
また街 から雪玉を運ぶので、これは頂点 を根とした木の走査を目的とした問題であることもわかります。
より遠いところの定義から、条件を満たす頂点を経由する際の木の深さの最大値を求める問題へと帰着できます。
よって について愚直に探索することで、この問題を正解することができます。計算量は です。
xxxxxxxxxx
//[0,n)
//[a,b)
using namespace std;
using ll = long long;
using ull = unsigned long long;
using P = pair<ll,ll>;
using pq = priority_queue<ll,vector<ll>,greater<ll>>;
using ppq = priority_queue<P,vector<P>,greater<P>>;
const ll inf = 8e18;
const int iinf = (int)1e9;
const int mod9 = 998244353;
const int mod1 = 1000000007;
struct Edge { int to; ll cost; int from; };
bool compe(const Edge &e,const Edge &e2){ return e.cost < e2.cost; }
using Graph = vector<vector<int>>;
using EGraph = vector<Edge>;
using SGraph = vector<set<ll>>;
template <typename T>
int siz(T& a){ return (int)a.size(); }
ll squa(int a){ return a*a; }
ll ceil(ll a,ll b){ return (a+b-1)/b; }
using namespace std;
int res = 0;
void dfs(const Graph &G,const vector<int> &C,int v,int pre,int d,int u){
res = max(res,d);
for(auto nv : G[v]){
//cout << v << " " << nv << endl;
if(nv == pre || C[nv] < u) continue;
dfs(G,C,nv,v,d+1,u);
}
}
int main(){
int K; cin >> K;
vector<int> U(K); rep(i,K) cin >> U[i];
int N; cin >> N;
Graph G(N);
rep(i,N-1){
int A; cin >> A;
A--;
G[A].push_back(i+1);
}
vector<int> C(N);
srep(i,1,N) cin >> C[i];
rep(i,K){
dfs(G,C,0,-1,0,U[i]);
cout << res << endl;
res = 0;
}
}