【详细注释】1051 Pop Sequence (25 分)
立志用最少的代碼做最高效的表達
PAT甲級最優題解——>傳送門
Given a stack which can keep M numbers at most. Push N numbers in the order of 1, 2, 3, …, N and pop randomly. You are supposed to tell if a given sequence of numbers is a possible pop sequence of the stack. For example, if M is 5 and N is 7, we can obtain 1, 2, 3, 4, 5, 6, 7 from the stack, but not 3, 2, 1, 7, 5, 6, 4.
Input Specification:
Each input file contains one test case. For each case, the first line contains 3 numbers (all no more than 1000): M (the maximum capacity of the stack), N (the length of push sequence), and K (the number of pop sequences to be checked). Then K lines follow, each contains a pop sequence of N numbers. All the numbers in a line are separated by a space.
Output Specification:
For each pop sequence, print in one line “YES” if it is indeed a possible pop sequence of the stack, or “NO” if not.
Sample Input:
5 7 5
1 2 3 4 5 6 7
3 2 1 7 5 6 4
7 6 5 4 3 2 1
5 6 4 3 7 2 1
1 7 6 5 4 3 2
Sample Output:
YES
NO
NO
YES
NO
#include<bits/stdc++.h> using namespace std; int main(){int M,N,K;scanf("%d%d%d",&M,&N,&K);while(K--){int A[N],t=0;//數組A存儲出棧順序,t存儲下一次壓棧時的首元素-1stack<int>s;bool f=true;//判斷輸出YES或者NOfor(int i=0;i<N;++i)scanf("%d",&A[i]);for(int i=0;i<N&&f;++i){//遍歷數組Aif(s.empty()||s.top()<A[i]){//棧為空或者棧頂元素小于A[i]for(int k=t+1;k<=A[i]&&s.size()<M;++k)//將t+1~A[i]這些數按從小到大順序壓入棧中,并保證棧的當前容量不超過Ms.push(k);t=s.empty()?0:s.top();//更新tif(t==A[i])//棧頂元素與A[i]相等s.pop();//彈出else//棧頂元素與A[i]不等f=false;//置f為false}else if(s.top()==A[i])//棧不為空且棧頂元素等于A[i]s.pop();//彈出棧頂元素else//棧不為空且棧頂元素大于A[i]f=false;//置f為false}printf("%s\n",f?"YES":"NO");//輸出}return 0; }
耗時:
總結
以上是生活随笔為你收集整理的【详细注释】1051 Pop Sequence (25 分)的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 1050 String Subtract
- 下一篇: 【附段错误原因,最后两个测试点】1052