求助大佬们,帮忙看看为什么过不了啊

P4387 【深基15.习9】验证栈序列

fufuQAQ @ 2022-02-11 10:13:19

cpp
#include<bits/stdc++.h>
#include<stack>
using namespace std;
const int N=100010; 
//stack<int> x; 
int a[N],b[N];
int main()
{
    int t;
    cin>>t;
    while(t--)
    {
       stack<int> x; 
       int n;
       cin>>n;
       for(int i=0;i<n;i++)
       {
            cin>>a[i];
            x.push(a[i]);
        }

        for(int i=0;i<n;i++)
            cin>>b[i];
        int ans=0;
        for(int i=0;i<n;i++)
        {
            if(x.top()==b[i])
            {
                ans++;
                x.pop();
            }
            if(x.size()==0) break;
        } 
        if(x.size()) cout<<"No"<<endl;
        else cout<<"Yes"<<endl;
        while(!x.empty())
          x.pop();//清空栈 
//      
//      if(ans==n)
//        cout<<"Yes"<<endl;
//      else 
//        cout<<"No"<<endl;
    }   
    return 0;

} 

|