题解
2024-03-02 11:40:52
发布于:广东
9阅读
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 and (st.top()==b[j]) ){
j++;
st.pop();
}
}
if(st.empty()==true) cout<<"Yes"<<endl;
else cout<<"No"<<endl;
return 0;
}
这里空空如也
有帮助,赞一个