* 洛谷 P1160 队列安排 (链表)
https://www.luogu.com.cn/problem/P1160
//链表
#include<bits/stdc++.h>
using namespace std;
typedef long long LL;
const int N=2002000,M=2002;
const int INF=0x3f3f3f3f;
struct node
{
int l;
int r;
int idx=0;
}a[N];
void add(int i,int k,int f)
{
if(f==0)//在原先的基础上变成左孩子
{
a[k].r=i;
a[k].l=a[i].l;
a[i].l=k;
a[a[k].l].r=k;
}
else if(f==1)//在原先的基础上变成右孩子
{
a[k].r=a[i].r;
a[k].l=i;
a[i].r=k;
a[a[k].r].l=k;
}
}
int main()
{
cin.tie(0); cout.tie(0); ios::sync_with_stdio(false);
int T=1;
//cin>>T;
while(T--)
{
LL n;
cin>>n;
//先定义一个头节点
a[0].l=0;
a[0].r=0;
add(0,1,1);//连接0和1,1在0的右手边
for(int i=2;i<=n;i++)
{
LL x,f;
cin>>x>>f;
add(x,i,f);//新加入的对象,和i的亲戚关系
}
LL m;
cin>>m;
while(m--)
{
int x;
cin>>x;
a[x].idx=1;
}
for(int i=a[0].r; i ;i=a[i].r)//链表从头节点一直往右
if(a[i].idx==0) cout<<i<<" ";
cout<<endl;
}
return 0;
}