只能过一个案例,大佬求救OvO
查看原帖
只能过一个案例,大佬求救OvO
1604276
handless楼主2024/12/27 17:35
#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;
}
2024/12/27 17:35
加载中...