题解
2023-08-24 14:00:17
发布于:广东
10阅读
0回复
0点赞
#include <bits/stdc++.h>
using namespace std;
int a[1010], b[1010];
int main()
{
int n,m;
cin>>n>>m;
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;
}
}
这里空空如也
有帮助,赞一个