Description

There is a famous railway station in PopPush City. Country there is incredibly hilly. The station was built in last century. Unfortunately, funds were extremely limited that time. It was possible to establish only a surface track. Moreover, it turned out that the station could be only a dead-end one (see picture) and due to lack of available space it could have only one track. 

The local tradition is that every train arriving from the direction A continues in the direction B with coaches reorganized in some way. Assume that the train arriving from the direction A has N <= 1000 coaches numbered in increasing order 1, 2, ..., N. The chief for train reorganizations must know whether it is possible to marshal coaches continuing in the direction B so that their order will be a1, a2, ..., aN. Help him and write a program that decides whether it is possible to get the required order of coaches. You can assume that single coaches can be disconnected from the train before they enter the station and that they can move themselves until they are on the track in the direction B. You can also suppose that at any time there can be located as many coaches as necessary in the station. But once a coach has entered the station it cannot return to the track in the direction A and also once it has left the station in the direction B it cannot return back to the station.

Input

The input consists of blocks of lines. Each block except the last describes one train and possibly more requirements for its reorganization. In the first line of the block there is the integer N described above. In each of the next lines of the block there is a permutation of 1, 2, ..., N. The last line of the block contains just 0.

The last block consists of just one line containing 0.

Output

The output contains the lines corresponding to the lines with permutations in the input. A line of the output contains Yes if it is possible to marshal the coaches in the order required on the corresponding line of the input. Otherwise it contains No. In addition, there is one empty line after the lines corresponding to one block of the input. There is no line in the output corresponding to the last ``null'' block of the input.

Sample Input

5
1 2 3 4 5
5 4 1 2 3
0
6
6 5 4 3 2 1
0
0

Sample Output

Yes
No Yes 先输入火车车厢数N,然后输入N个数代表车厢编号a[i],判断火车是否能按1~N或者N~1的顺序开出,a[0] = 0;代表车厢数为N的循环结束,N = 0;代表程序结束。
思路:    
先输入车厢编号,用数组a[i]保存,在从1~N依次输入栈st中,依次判断st.top()是否等于[i].
 #include<cstdio>
#include<stack>
using namespace std;
int main()
{
int n,a[],i,j;
while(scanf("%d",&n) && n)
{
stack<int>st;
while(scanf("%d",&a[]) && a[])
{
for( i = ; i < n ; i++)
{
scanf("%d",&a[i]);
}
for( i = , j = ; i <= n ; i++)
{
st.push(i);
while(st.top() == a[j])
{
j++;
st.pop();
if(st.empty()) //栈为空时结束循环
break;
}
}
if( j == n) printf("Yes\n");
else
printf("No\n");
}
printf("\n");
}
}

最新文章

  1. Ubuntu提示卷boot仅剩0字节的硬盘空间,解决办法
  2. NYOJ 187
  3. 服务器RAS性能
  4. Shiro源码分析-初始化-Realm
  5. C#中派生类调用基类构造函数用法分析
  6. Interview----链表的倒数第K个元素
  7. Java之加密(信息摘要)工具类(依赖:java.security.MessageDigest或org.apache.commons.codec.digest.DigestUtils)
  8. 《Android开发艺术探索》读书笔记 (4) 第4章 View的工作原理
  9. SqlCommand.Parameters.add()方法
  10. Ansible5:常用模块【转】
  11. BZOJ 3670: [Noi2014]动物园 [KMP]
  12. 【Python】 用户图形界面GUI wxpython I 基本用法和组件
  13. 将OrCAD Capture CIS的设计文件(.dsn)导入到PADS Logic VX.2.3
  14. 一分钟学会JavaMail(假)__手动滑稽
  15. spider随机请求头和ip
  16. [转帖]KMS 是什么 以及 优缺点
  17. Android 常用正则表达式
  18. 关于@RestController注解(转发)
  19. [UFLDL] *Sparse Representation
  20. 『计算机视觉』Mask-RCNN_推断网络终篇:使用detect方法进行推断

热门文章

  1. float(double)快速转换int的方法
  2. 《windows核心编程系列》五谈谈线程基础
  3. poj 2349 Arctic Network(最小生成树的第k大边证明)
  4. 51nod 1098 最小方差
  5. 洛谷 P1816 忠诚
  6. DP(两次) UVA 10163 Storage Keepers
  7. yum 安装报错:*epel: mirrors.aliyun.comError: xzcompressionnot available
  8. sed简单脚本练习
  9. Ubuntu卸载软件包
  10. 简单工厂模式及php实现