Answer
2024-03-02 11:41:03
发布于:广东
11阅读
0回复
0点赞
#include <bits/stdc++.h>
#include <stack>
using namespace std;
stack<int>st;
int n;
int a[10001],b[10001];
int main()
{
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(st.empty() == false && (st.top() == b[j]))
{
if(st.top() == b[j])
{
j++;
st.pop();
}
}
}
if(st.empty() == true) cout<<"Yes"<<endl;
else cout<<"No"<<endl;
return 0;
}
这里空空如也
有帮助,赞一个