码迷,mamicode.com
首页 > 其他好文 > 详细

UVa 514 数据结构栈

时间:2015-04-07 21:53:19      阅读:143      评论:0      收藏:0      [点我收藏+]

标签:数据结构      

背景:1A

思路:栈模拟

我的代码:

#include <set>
#include <stack>
#include <queue>
#include <vector>
#include <cstdio>
#include <map>
#include <cstring>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#define LL long long int
using namespace std;
const int M=1009,INF=0x3fffffff;
int n,train[M];

int main(void){
log:while(scanf("%d",&n),n){
        while(true){
            stack<int> s1,s2;
            bool ans=false;
            for(int i=1;i <= n;i++){
                scanf("%d",&train[i]);
                if(!train[i]){
                    printf("\n");
                    goto log;
                }
                s1.push(n-i+1);
            }
            for(int i=1;;i++){
                if(i > n){ans=true;break;}
                if(!s2.empty() && s2.top() == train[i]){
                    s2.pop();
                }else if(!s1.empty() && train[i] >= s1.top()){
                    while(true){
                        if(!s1.empty() && s1.top() == train[i]){
                            s1.pop();
                            break;
                        }
                        int temp=s1.top();
                        s1.pop();
                        s2.push(temp);
                    }
                }else break;
            }
            if(ans) printf("Yes\n");
            else printf("No\n");
        }
    }
    return 0;
}

UVa 514 数据结构栈

标签:数据结构      

原文地址:http://blog.csdn.net/jibancanyang/article/details/44923859

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!