-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCodeforces 1153D.cpp
More file actions
53 lines (49 loc) · 1.53 KB
/
Copy pathCodeforces 1153D.cpp
File metadata and controls
53 lines (49 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
#include <bits/stdc++.h>
#define pb push_back
#define pf push_front
#define pob pop_back
#define fp first
#define sp second
#define mp make_pair
#define ins insert
#define uEdge(u, v) g[u].pb(v), g[v].pb(u)
#define uwEdge(u, v, w) g[u].pb({v, w}), g[v].pb({u, w})
#define dEdge(u, v) g[u].pb(v)
#define dwEdge(u, v, w) g[u].pb({v, w})
#define BOOST ios_base::sync_with_stdio(0), cin.tie(0), cout.tie(0)
#define minHeap int, vector<int>, greater<int>
#define MOD 1000000007
using namespace std;
typedef long long int lli;
typedef pair<int, int> pii;
lli nl, arr[0];
vector<int> g[300010];
int op[300010], dp[300010], k=0;
lli gcd(lli a, lli b){if(b == 0) return a;a%=b;return gcd(b, a);}
lli lcm(lli a, lli b){return (a*b)/gcd(a, b);}
int bs(lli sum){int l=0,r=nl-1,mid;while(l<=r){mid=(l+r)/2;if(arr[mid]==sum)return mid;if(arr[mid]<sum)l=mid+1;else r=mid-1;}return -1;}
lli modPow(lli a, lli b){a%=MOD;lli ans=1;while(b > 0){if(b & 1) ans=ans*a%MOD;a=a*a%MOD;b>>=1;}return ans;}
void DFS(int u, int p){
if(p && g[u].size() == 1){
k++;
dp[u]=1;
return;
}
if(op[u]) dp[u]=INT_MAX;
else dp[u]=0;
for(auto v : g[u]){
if(v == p) continue;
DFS(v, u);
if(op[u]) dp[u]=min(dp[u], dp[v]);
else dp[u]+=dp[v];
}
}
int main(){
int n, fi;
scanf("%d", &n);
for(int i = 1; i <= n; i++) scanf("%d", &op[i]);
for(int i = 2; i <= n; i++) scanf("%d", &fi), uEdge(fi, i);
DFS(1, 0);
printf("%d", k+1-dp[1]);
return 0;
}