铁轨(UVa 514)】的更多相关文章

较为简单的stack题目 但是还是犯了一些错误: 1. 要想清空栈,直接重新定义较为方便! 2.在if(s.top()==x)时  加上  !s.empty()  否则程序会崩溃 3. 必须要加上i--  错了好久 #include <bits/stdc++.h> using namespace std; int main() { ]; int n; while(scanf("%d",&n)&&n) { ){ stack<int>s;//…
铁轨(rails, ACM/ICPC CERC 1997,Uva 514) 题目描述 某城市有一个火车站,铁轨铺设如图所示.有n节车厢从A方向驶入车站,按进站顺序编号为1~n.你的任务是让它们按照某种特定的顺序进入B方向的铁轨并驶出车站.为了重组车厢,你可以借助中转站C.这是一个可以停放任意多节车厢的车站,但由于末端封顶,驶入C的车厢必须按照相反的顺序驶出C.对于每个车厢,一旦从A移入C,就不能再回到A了:一旦从C移入B,就不能回到C了.换句话说,在任意时刻,只有两种选择:A-->C和C-->…
from my CSDN: https://blog.csdn.net/su_cicada/article/details/86939523 例题6-2 铁轨(Rails, ACM/ICPC CERC 1997, UVa 514) 某城市有一个火车站,铁轨铺设如图6-1所示. 有n节车厢从A方向驶入车站,按进站顺 序编号为1-n. 你的任务是判断是否能让它们按照某种特定的顺序进入B方向的铁轨并驶出 车站. 例如,出栈顺序(5 4 1 2 3)是不可能的,但(5 4 3 2 1)是可能的. 为了重…
利用栈实现 C++11 代码如下: #include<iostream> #include<stack> using namespace std; #define maxn 1001 int n, num[maxn]; int main() { ) { while (n) { ; i <= n; i++) { cin >> num[i]; ] == ) { n = ; break; } } )break; stack<int>s; , B = ; bo…
题意: #include <bits/stdc++.h> using namespace std; int main() { int n; ]; ; ) { ]) && num[] != ){ stack<int> s1; num[] = num[]; ; i <= n; i++){ scanf("%d", num+i); } ; , B = ; while(B <= n){ if(A == num[B]){A++; B++;} el…
题目:铁轨 题目链接:UVa514链接 题目描述: 某城市有一个火车站,有n节车厢从A方向驶入车站,按进站的顺序编号为1-n.你的任务是判断是否能让它们按照某种特定的顺序进入B方向的铁轨并驶入车站.例如,出栈顺序(5 4 1 2 3)是不可能的,但是(5 4 3 2 1)是可能的. 题目分析: 为了重组车厢,借助中转站,对于每个车厢,一旦从A移入C就不能回到A了,一旦从C移入B,就不能回到C了,意思就是A->C和C->B.而且在中转站C中,车厢符合后进先出的原则.故这里可以看做为一个栈. 题目…
练习一下stack的使用,还有要注意一下输入的格式,看了好长时间没懂. //#define LOCAL #include <iostream> #include <cstdio> #include <cstring> #include <stack> using namespace std; + ; int n, target[maxn]; int main(void) { #ifdef LOCAL freopen("514in.txt"…
栈的简单应用 /************************************************************************* > Author: xlc2845 > Mail: xlc2845@gmail.com > Created Time: 2013年11月12日 星期二 13时31分53秒 ************************************************************************/ #inc…
 Rails  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, i…
C是一个栈,每次先检查A的第一个元素是否满足,如果满足,直接进入B:再检查C中栈顶元素是否满足,如果满足,出栈进入B:前两步都不满足将A放入C栈中.循环到B满或者A,C中都不满足条件并且A空,第一种情况成功,第二种情况失败. AC代码: #include <iostream> #include <cstdio> #include <cstdlib> #include <cctype> #include <cstring> #include <…