设为首页 加入收藏

TOP

SGU 271 Book Pile(双端队列)
2015-07-20 17:42:07 来源: 作者: 【 】 浏览:1
Tags:SGU 271 Book Pile 双端 队列

271. Book Pile

time limit per test: 0.25 sec.
memory limit per test: 65536 KB input: standard
output: standard


There is a pile of N books on the table. Two types of operations are performed over this pile:
- a book is added to the top of the pile,
- top K books are rotated. If there are less than K books on the table, the whole pile is rotated.
First operation is denoted as ADD(S) where S is the name of the book, and the second operations is denoted as ROTATE.
The maximum number of books is no more than 40000. All book names are non-empty sequences of no more than 3 capital Latin letters. The names of the books can be non-unique.
Input The first line of input file contains 3 integer numbers N, M, K (0 <= N <= 40000; 0 <= M <= 100000; 0 <= K <= 40000). The following N lines are the names of the books in the pile before performing any operations. The book names are given in order from top book to bottom. Each of the following M lines contains the operation description.

Output Output the sequence of books names in the pile after performing all operations. First line corresponds to the top book.

Sample test(s)
Input
 2 3 2 A B ADD(C) ROTATE ADD(D) Output 
 
 D 
 
A
C
B
题意:一开始桌子上从上到下放着N本书(N <= 40000),有M组操作:1.将前K本书翻转,2.在头上加一本书。最后输出书的顺序。 思路:只要维护前K本书即可。用双端队列维护,翻转时,只要改变双端队列的头的方向即可。多出来的书添加到另一个双端队列中。需要特别注意当k=0的时候的情况,容易RE,以及输入输出不要用string。
#include 
  
   
#include 
   
     #include 
    
      #include 
     
       #include 
      
        #include 
       
         #include 
        
          #include 
         
           #include 
           #include 
           
             using namespace std; typedef long long LL; #define REP(_,a,b) for(int _ = (a); _ <= (b); _++) int n,m,k; int dir; deque
            
              ds; deque
             
               extra; void init() { ds.clear(); extra.clear(); dir = 1; } void input() { string a; char st[10]; REP(i,1,n) { scanf("%s",st); if(i > k) { extra.push_back(string(st)); }else{ ds.push_back(string(st)); } } } string getName(char *opt) { string name; bool flag = false; int len = strlen(opt)-1; REP(i,0,len) { if(opt[i]==')') { flag = false; } if(flag) name += opt[i]; if(opt[i]=='(') { flag = true; } } return name; } void Add(string st) { if(ds.size() == k) { if(dir) { string t = ds.back(); ds.pop_back(); extra.push_front(t); ds.push_front(st); }else{ string t = ds.front(); ds.pop_front(); extra.push_front(t); ds.push_back(st); } }else{ if(dir) { ds.push_front(st); }else{ ds.push_back(st); } } } void Rotate() { dir = 1-dir; } void solve() { char st[100]; while(m--) { scanf("%s",st); if(st[0]=='A') { string name = getName(st); if(k==0) { extra.push_front(name); }else{ Add(name); } }else if(k!=0){ Rotate(); } } if(!dir) reverse(ds.begin(),ds.end()); for(deque
              
               ::iterator it = ds.begin(); it != ds.end(); it++) { printf("%s\n",(*it).c_str()); } for(deque
               
                ::iterator it = extra.begin(); it != extra.end(); it++) { printf("%s\n",(*it).c_str()); } } int main(){ while(~scanf("%d%d%d",&n,&m,&k)) { init(); input(); solve(); } return 0; } 
               
              
             
            
           
         
        
       
      
     
    
   
  



】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇2014鞍山网络预选赛1004(贪心)h.. 下一篇j2ee规范――JNDI

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容:

·工业机器人TCP校准中 (2025-12-25 05:19:17)
·opc 通讯协议与 TCP (2025-12-25 05:19:15)
·labview中tcp/ip通信 (2025-12-25 05:19:13)
·新书介绍《Python数 (2025-12-25 04:49:47)
·怎么利用 Python 进 (2025-12-25 04:49:45)