TIJIE
2024-03-02 11:41:06
发布于:广东
7阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int n;
stack<int> st;
int a[10005],b[10005];
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]); //将a数组里面的所有数据进站
while(!st.empty() && st.top()==b[j])
{
j++;
st.pop();
}
}
if(st.empty()) cout<<"Yes"<<endl;
else cout<<"No"<<endl;
}
这里空空如也
有帮助,赞一个