问题如下:

问题 B: Rails

时间限制:  Sec  内存限制:  MB
提交: 解决:
[提交][状态][讨论版]
题目描述 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 <= coaches numbered in increasing order , , ..., 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. 输入 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 , , ..., N. The last line of the block contains just . The last block consists of just one line containing . 输出 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. 样例输入 样例输出 Yes
No Yes
提示

View question

利用递归的思想,可以这么写:

 //模拟法:搭建stack堆栈模拟a堆栈出栈顺序以判断a堆栈是否合法出栈

 #include<stdio.h>
#include<string.h>
#include<malloc.h> int main()
{
int t,n,i,len,flag;
int a[],stack[];
int cur,pos,top;
while(scanf("%d",&t)!=EOF)
{
if(t==)
return ;
while()
{
cur=;pos=;top=;
for(i=;i<t;i++)
{
scanf("%d",&n);
if(i== && n==)
{
printf("\n\n");
t=;
}
a[i]=n;
} flag=;
if(t)
{ //cur=1;pos=0;top=0;
//top代表 stack 堆栈中有几个数
//pos代表已从堆栈中取出的数目,也代表a堆栈中待取数
//cur代表欲往stack堆栈中加入的新数 stack[top] = cur;
while (pos < t && top < t)
{
if (a[pos] == stack[top])//如果stack栈顶数 等于 a堆栈中待取数
{
pos++;//则取出a堆栈中待取数
top--;//并在a堆栈中往后移一位 , 同时将 stack 堆栈前移一位 //针对 当前stack 为空时, 则在stack堆栈中添加入新数cur
if (top < )
{
top = ;
stack[top] = ++cur;
}
}
else//否则在 stack堆栈中加入新的数
stack[++top] = ++cur; //检查状态
/*printf("cur =%d pos=%d top=%d flag=%d\n",cur,pos,top,flag++);
for(i=0;i<=top;i++)
printf("%d ",stack[i]);
printf("\n");*/
}
if (top == t)
printf("No\n");
else
printf("Yes\n");
}
if(t==)
break;
}
}
return ;
}

除此之外,还有一个问题,比如要求堆栈中合法出栈顺序次数

 //摘自http://hi.baidu.com/onlys_c/item/be805c428dde9dd6c0a59213
//整理by Jeremy Wu
/*sum作为全局变量记录共可能多少种情况*/
int sum = ;
/*描述:递归计算共可能出现的出栈序列,
无返回值参数:inStack
-- 目前存放于栈中的元素个数wait
-- 目前还未进栈的元素个数out
-- 目前已经出栈的元素个数num
-- 一共有多少个元素n*/
void f(int inStack, int wait, int out, int num){ /*如果全部元素都出栈,表明有了一种新情况,总数加一*/
if (out == num)
sum++; /*否则继续递归衍生新的状态*/
else{
if (inStack > )/*衍生方法1:让一个元素出栈*/
f(inStack-, wait, out+, num);
if (wait > )/*衍生方法2:让一个元素进栈*/
f(inStack+, wait-, out, num);
} }
/*用main函数调用*/
int main()
{
/*一共有n个元素*/
int n = ;
/*刚开始时栈中有0个元素,有n个元素等待,有0个元素出了栈,共有n个元素*/
f(, n, , n);
printf ("%d\n", sum);
return ;
}

poj 1363 Rails in PopPush City &&【求堆栈中合法出栈顺序次数】的更多相关文章

  1. OpenJudg / Poj 1363 Rails

    1.链接: http://poj.org/problem?id=1363 http://bailian.openjudge.cn/practice/1363 2.题目: Rails Time Limi ...

  2. POJ 1363 Rails(栈)

    题目代号:POJ 1363 题目链接:http://poj.org/problem?id=1363 题目原题: Rails Time Limit: 1000MS   Memory Limit: 100 ...

  3. POJ 1363 Rails

    Rails Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 21728   Accepted: 8703 Descriptio ...

  4. poj 1363 Rails (【栈的应用】 刘汝佳的写法 *学习)

    Rails Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 25964   Accepted: 10199 Descripti ...

  5. poj 1363 Rails 解题报告

    题目链接:http://poj.org/problem?id=1363 题意:有一列火车,车厢编号为1-n,从A方向进站,向B方向出站.现在进站顺序确定,给出一个出站的顺序,判断出站顺序是否合理. 实 ...

  6. POJ 1363 Rails(栈)

    思路:将出车站的顺序存入数组train,由于入车站的顺序是固定的,为1~N,所以用P表示进站的车,初始为1. 接下来举例说明吧: 原来入站顺序:    1 2 3 4 5 读入的出战顺序: 3 4 2 ...

  7. POJ1363 Rails 验证出栈序列问题

    题目地址: http://poj.org/problem?id=1363 此题只需验证是否为合法的出栈序列. 有两个思路: 1.每个已出栈之后的数且小于此数的数都必须按降序排列.复杂度O(n^2),适 ...

  8. ZOJ 1542 POJ 1861 Network 网络 最小生成树,求最长边,Kruskal算法

    题目连接:problemId=542" target="_blank">ZOJ 1542 POJ 1861 Network 网络 Network Time Limi ...

  9. POJ 3259 Wormholes(最短路径,求负环)

    POJ 3259 Wormholes(最短路径,求负环) Description While exploring his many farms, Farmer John has discovered ...

随机推荐

  1. Java Web 入门(一)使用 Intellij IDEA 14.1.5 创建 Maven Web项目

    1.基础配置 1.1 安装 JDK1.7,配置系统变量:JAVA_HOME 和 Path 1.2 安装 Tomcat 7.0 1.3 安装  Intellij IDEA 14.1.5 1.4 Mave ...

  2. 帝国cms7.0,列表模板调用不支持附表字段

    帝国cms在制作列表模板时,是不支持一些字段的调用的,原因是因为有些字段所在的位置为附表,本段详细向你介绍 帝国如何调用副表字段 我们可在 系统---管理数据表---管理字段中查看 如果我们需要调用附 ...

  3. Spring Boot Admin Reference Guide

    1. What is Spring Boot Admin? Spring Boot Admin is a simple application to manage and monitor your S ...

  4. Python的安装和详细配置(转)

    Python是一种面向对象.解释型计算机程序设计语言.被认为是比较好的胶水语言.至于其他的,你可以去百度一下.本文仅介绍python的安装和配置,供刚入门的朋友快速搭建自己的学习和开发环境.本人欢迎大 ...

  5. HDU 1847 Good Luck in CET-4 Everybody!

    题解:巴什博弈,2^k+1=3N或2^k2=3N,所以3N为P-position,3N+r为N-position. #include <cstdio> int main(){ int n; ...

  6. HDU 2138 How many prime numbers

    米勒罗宾素数测试: /* if n < 1,373,653, it is enough to test a = 2 and 3. if n < 9,080,191, it is enoug ...

  7. 今天刚申请成为Uber司机 已经接了5单了....大家有什么想问的吗?

    今天刚申请成为Uber司机  已经接了5单了....大家有什么想问的吗? 滴滴快车单单2.5倍,注册地址:http://www.udache.com/如何注册Uber司机(全国版最新最详细注册流程)/ ...

  8. [置顶] JDK-Future 模式和实现

    最近的项目用到了多线程,发现java.util.concurrent.Future蛮好用的. 像平时,写多线程一般使用Thread/Runnable,直接扔给线程池执行就好了.但是遇到了一些需要获取线 ...

  9. USB设备在连接PC时的reset从何而来?

    近期在做烧写工具的优化工作,有一些关于USB的内容须要总结一下当中包含设备的初始化过程和枚举过程. 在枚举的过程中,设备会一直等PC端的状态,当等到reset命令时会对设备进行又一次枚举.可是这个re ...

  10. Android——用户登陆及用户名和密码的保存

    Android——用户登陆及用户名和密码的保存   在之前的学习过程中已经将Android学习完了,但是在后面将近一年的时间里都没有进行过Android开发,所以对Android的所有的知识点又有点忘 ...