模拟栈的操作。
#include <iostream>
#include <stdio.h>
#include <string.h>
#include <vector>
#include <map>
#include <stack>
#include <queue>
#include <algorithm>
#include <set>
using namespace std;
int main(){
int m,n,k;
//freopen("E://PAT/input.txt", "r", stdin);
scanf("%d %d %d",&m,&n,&k);
while(k--){
stack<int> s;
bool flag=true;
int cur=1;
for(int j=0;j<n;j++){
int num;
scanf("%d",&num);
if(flag){
while(s.empty()||s.top()!=num){
s.push(cur);
if(s.size()>m){
flag=false;
break;
}
cur++;
}
if(flag&&s.size()>=1&&s.top()==num)
s.pop();
}
}
if(flag) printf("YES\n");
else printf("NO\n");
}
return 0;
}