题解
2023-08-23 16:53:16
发布于:广东
36阅读
0回复
0点赞
其实就是火车进出站的思想,只要把m设成1就行了
#include <bits/stdc++.h>
using namespace std;
int a[1001], b[1001];
int main()
{
int n,m=1;
cin>>n;
for(int i=1;i<=n;i++){
cin>>a[i];
}
while(m--){
for(int i=1;i<=n;i++) cin>>b[i];
stack<int> st;
int j=1;
for(int i=1;i<=n;i++){
st.push(a[i]);
while(!st.empty()&&st.top()==b[j])
{
st.pop();
j++;
}
}
if(st.empty()) cout<<"Yes"<<endl;
else cout<<"No"<<endl;
}
}
这里空空如也
有帮助,赞一个