不会的看我!!!
2024-03-02 11:40:36
发布于:广东
14阅读
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]);//将a数组里面的所有数据进站
while((st.empty() == false) and (st.top()==b[j]) )
{
j++;
st.pop();
}
}
if(st.empty()==true) cout<<"Yes"<<endl;
else cout<<"No"<<endl;
return 0;
}
这里空空如也
有帮助,赞一个