码迷,mamicode.com
首页 >  
搜索关键字:hdu1022    ( 8个结果
hdu1022 Train Problem I---模拟栈
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1022 题目大意: 车的进出站问题,先给出N个火车,再按序列一的方式进站,判断能否以序列二的方式出站,若能先输出“Yes.”,再输出出站步骤,以FINISH结束,若不能,输出“No.”,仍以FINISH结 ...
分类:其他好文   时间:2018-04-02 22:51:24    阅读次数:238
acm编程题:hdu1021 ,hdu1022,hdu1023
//1021//思路:求出各个fn,再挨个判断其是否能被3整除.#include<iostream>using namespace std;#define N 1000000int f[N];int main(){ int n; int i; f[0] = 1;//%3的结果 f[1] = 2;// ...
分类:其他好文   时间:2018-03-08 23:01:52    阅读次数:189
hdu1022(Train Problem I)----- 典型栈类题目
点击打开链接 Problem Description As the new term comes, the Ignatius Train Station is very busy nowadays. A lot of student want to get back to school by train(because the trains in the Ignatius Train St...
分类:其他好文   时间:2015-08-10 02:01:32    阅读次数:127
hdu1022 Train Problem I 栈的应用
Train Problem I Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others) Total Submission(s): 26161    Accepted Submission(s): 9886 Problem Description As the ne...
分类:其他好文   时间:2015-08-05 10:33:45    阅读次数:113
hdu1022 Train Problem I
http://acm.hdu.edu.cn/showproblem.php?pid=1022 1 #include 2 #include 3 #include 4 #include 5 #include 6 #include 7 using namespace std; 8 const int N=...
分类:其他好文   时间:2015-05-09 22:05:45    阅读次数:118
HDU1022 Train Problem I 栈的模拟
题目链接:http://acm.hdu.edu.cn/showproblem.php?pid=1042栈的模拟,题目大意是已知元素次序, 判断出栈次序是否合理。 需要考虑到各种情况, 分类处理。常见错误:使用前未清空栈使用STL思路较为清晰代码附上, 欢迎各位大神指点~~#include #incl...
分类:其他好文   时间:2014-11-29 13:09:44    阅读次数:143
hdu1022 train problem 栈的应用
#include #include #include using namespace std;int main(){ int n; while(cin >> n) { stack one; string od1,od2; bool stat...
分类:其他好文   时间:2014-05-21 23:48:58    阅读次数:370
HDU1022 Train Problem I (栈)
栈+队列 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 int main() 7 { 8 int n; 9 char a[11],b[11];10 stacks;11 queu...
分类:其他好文   时间:2014-04-28 09:18:36    阅读次数:537
8条  
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!