#include <iostream>
#include <stack>
using namespace std;
const int N =1e5+10;
int a[N],b[N];
stack<int> st;
int main()
{
int q;
cin >> q;
while(q--)
{
int n;
cin >> n;
for(int i=1;i<=n;i++)
{
cin >> a[i];
}
for(int i=1;i<=n;i++)
{
cin >> b[i];
}
int j=1;
for(int i=1;i<=n;i++)
{
st.push(a[i]);
while(j<=n && st.size() && st.top()==b[j])
{
st.pop();
j++;
}
}
if(st.empty())
{
cout << "Yes" << endl;
}
else
{
cout << "No" << endl;
}
}
return 0;
}