当前位置:网站首页>PAT甲级 1051 Pop Sequence
PAT甲级 1051 Pop Sequence
2022-08-02 23:51:00 【九是否非随机的称呼】
模拟stack
#include<iostream>
#include<vector>
#include<stack>
#include<bits/stdc++.h>
using namespace std;
int main(void){
int i, j, k, m, n, h, mm, nn;
cin>>m>>n>>h;
vector<int> vec[h];
for(i = 0; i < h; i++){
for(j = 0; j < n; j++){
cin>>k;
vec[i].push_back(k);
}
}
for(i = 0; i < h; i++){
stack<int> s;
int cnt = 0;
int num = 1;
while(s.size()<=m){
if(s.size() > 0 && s.top()==vec[i][cnt]){
s.pop();
cnt++;
}
else if(s.size() > 0 && num <=n && s.top()!=vec[i][cnt])
s.push(num++);
else if(s.size()==0 && num <=n)
s.push(num++);
else break;
}
if(s.size() > 0) cout<<"NO"<<endl;
else cout<<"YES"<<endl;
}
return 0;
}
边栏推荐
- What is the matter that programmers often say "the left hand is knuckled and the right hand is hot"?
- js基础知识整理之 —— 闭包
- Merge two excel spreadsheet tools
- Servlet——请求(request)与响应(response)
- D experimental new anomaly
- pytest-常用运行参数
- scala 集合通用方法
- Let's talk about the charm of code language
- 6、Powershell命令配置Citrix PVS云桌面桌面注销不关机
- Database auditing - an essential part of network security
猜你喜欢
IDEA多线程调试
js基础知识整理之 —— 获取元素和命名规范
【多线程】线程与进程、以及线程进程的调度
可编程逻辑控制器(PLC) : 基础、类型和应用
Teach you to locate online MySQL slow query problem hand by hand, package teaching package meeting
主流定时任务解决方案全横评
Day117.尚医通:生成挂号订单模块
九零后程序员心声:互联网的同行们,别卷了,再卷人都卷没了
合并两个excel表格工具
【问题征集】向 iPod 之父、iPhone 联合设计者、Google Nest 创始人 Tony Fadell 提问啦
随机推荐
Understand the next hop address in the network topology in seconds
Introduction to resubmit Progressive Anti-Duplicate Submission Framework
What is the matter that programmers often say "the left hand is knuckled and the right hand is hot"?
优秀论文以及思路分析02
CKAN教程之在 AWS 上部署 CKAN 应用程序
6、Powershell命令配置Citrix PVS云桌面桌面注销不关机
服务间歇性停顿问题优化|得物技术
LVM与磁盘配额原理及配置
Cholesterol-PEG-Acid,胆固醇-聚乙二醇-羧基保持在干燥、低温环境下
vant-swipe自适应图片高度+图片预览
NLP commonly used Backbone model cheat sheet (1)
C# 异步编程(async和await)
别再到处乱放配置文件了!我司使用 7 年的这套解决方案,稳的一秕
程序员英语自我介绍
语音合成模型小抄(1)
Servlet——请求(request)与响应(response)
优秀论文以及思路分析01
CAS:1445723-73-8,DSPE-PEG-NHS,磷脂-聚乙二醇-活性酯两亲性脂质PEG共轭物
牛客网剑指offer刷题练习之链表中环的入口结点
并查集总结