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

【SGU】271. Book Pile(双端队列模拟)

时间:2015-03-31 14:47:11      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:

一摞书,2个操作,一个操作是在书堆上加一本,第二个将前K个书翻转

看别人用Splay树做的,但是可以用双端队列模拟,因为K个书之后的书位置已经定下来了,所以只需要记录在队列头加书还是尾加书

#include<cstdio>
#include<string>
#include<algorithm>
#include<queue>
#include<stack>
#include<cstring>
#include<iostream>
using namespace std;
int main(){
    int N,M,K;
    while(scanf("%d%d%d",&N,&M,&K) != EOF){
        deque<string>q1;
        deque<string>q2;
        int top = 1;
        for(int i = 0; i < N; i++){
            char str[10];
            scanf("%s",str);
            if(q1.size() >= K)
                q2.push_back(string(str));
            else
                q1.push_back(string(str));
        }
        for(int i = 0; i < M; i++){
            char str[50];
            scanf("%s",str);
            if(str[0] == 'A'){
                string s = "";
                int L = strlen(str);
                int ok = 0;
                for(int j = 0; j < L; j++){
                    if(str[j] == '(') ok = 1;
                    else if(str[j] == ')') ok = 0;
                    else if(ok)
                        s += str[j];
                }
                if(top)
                    q1.push_front(s);
                else
                    q1.push_back(s);
                if(q1.size() > K){
                    if(top){
                        string s1 = q1.back();
                        q1.pop_back();
                        q2.push_front(s1);
                    }
                    else{
                        string s1 = q1.front();
                        q1.pop_front();
                        q2.push_front(s1);
                    }
                }
            }
            else top = !top;
        }
        if(top){
            while(!q1.empty()){
                cout << q1.front() << endl;
                q1.pop_front();
            }
        }
        else{
            while(!q1.empty()){
                cout << q1.back() << endl;
                q1.pop_back();
            }
        }
        while(!q2.empty()){
            cout << q2.front() << endl;
            q2.pop_front();
        }
    }
    return 0;
}

【SGU】271. Book Pile(双端队列模拟)

标签:

原文地址:http://blog.csdn.net/u013451221/article/details/44778443

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