N - Broken Keyboard (a.k.a. Beiju Text)

N - Broken Keyboard (a.k.a. Beiju Text)

Time Limit:1000MS     Memory Limit:0KB     64bit IO Format:%lld & %llu

Description

You’re typing a long text with a broken keyboard. Well it’s not so badly broken. The only problem with the keyboard is that sometimes the “home” key or the “end” key gets automatically pressed (internally).

     You’re not aware of this issue, since you’re focusing on the text and did not even turn on the monitor! After you finished typing, you can see a text on the screen (if you turn on the monitor).

      In Chinese, we can call it Beiju. Your task is to find the Beiju text.

Input

There are several test cases. Each test case is a single line containing at least one and at most 100,000 letters, underscores and two special characters ‘[’ and ‘]’. ‘[’ means the “Home” key is pressed internally, and ‘]’ means the “End” key is pressed internally. The input is terminated by end-of-file (EOF).

Output

For each case, print the Beiju text on the screen.

Sample Input

This_is_a_[Beiju]_text

[[]][][]Happy_Birthday_to_Tsinghua_University

Sample Output

BeijuThis_is_a__text

Happy_Birthday_to_Tsinghua_University

//超时代码

用两条链表。head存储排好序的,l_head另一条存储前面的,碰到‘]‘和‘\n‘就连接起来,然后输出,可惜这超时了。可能用链表在创建时和删除时会很慢吧。

 1 #include <iostream>
 2 #include <cstring>
 3 #include <deque>
 4 using namespace std;
 5
 6 struct num
 7 {
 8     char x;
 9     struct num*next;
10 };
11
12 struct num *head;
13 struct num *endy;
14 struct num *cur,*ne;
15
16 void sv_head()
17 {
18     if (cur!=NULL)
19     {
20     ne->next=head;
21     head=cur;
22     cur=NULL;
23     }
24 }
25
26
27 int main()
28 {
29     int flag=1;
30     char k;
31     head=NULL;
32     cur=ne=head;
33     while(k=getchar())
34     {
35         if (k!=‘\n‘)
36         {
37            if(k==‘[‘){flag=0;cur=NULL;continue;}
38             if(k==‘]‘){flag=1;sv_head();continue;}
39             if(flag)
40             {
41                 if (head==NULL)
42                 {
43                     head=new num;
44                     head->x=k;
45                     head->next=NULL;
46                     endy=head;
47                 }
48                 else
49                 {
50                     ne=new num;
51                     ne->x=k;
52                     ne->next=NULL;
53                     endy->next=ne;
54                     endy=ne;
55                 }
56             }
57             else
58             {
59                 if (cur==NULL)
60                 {
61                     cur=new num;
62                     cur->x=k;
63                     cur->next=NULL;
64                     ne=cur;
65                 }
66                 else
67                 {
68                     ne->next=new num;
69                     ne->next->x=k;
70                     ne->next->next=NULL;
71                     ne=ne->next;
72                 }
73             }
74         }
75         else
76         {
77             sv_head();
78             cur=ne=head;
79             while (ne!=NULL)
80             {
81                 printf("%c",ne->x);
82                 ne=ne->next;
83                 delete cur;
84                 cur=ne;
85             }
86             printf("\n");
87
88             flag=1;
89             head=NULL;
90             cur=ne=endy=NULL;
91         }
92
93     }
94     return 0;
95 }

//AC的

......

时间: 2024-10-12 17:48:08

N - Broken Keyboard (a.k.a. Beiju Text)的相关文章

uva - Broken Keyboard (a.k.a. Beiju Text)(链表)

11988 - Broken Keyboard (a.k.a. Beiju Text) You’re typing a long text with a broken keyboard. Well it’s not so badly broken. The only problemwith the keyboard is that sometimes the “home” key or the “end” key gets automatically pressed(internally).Yo

UVA11988 Broken Keyboard (a.k.a. Beiju Text)【数组模拟链表】

Broken Keyboard (a.k.a. Beiju Text) You're typing a long text with a broken keyboard. Well it's not so badly broken. The only problem with the keyboard is that sometimes the "home" key or the "end" key gets automatically pressed (inter

Broken Keyboard (a.k.a. Beiju Text) UVA, 11988(链表)

Broken Keyboard (a.k.a. Beiju Text) From:UVA, 11988 Time Limit: 1000 MS Broken Keyboard (a.k.a. Beiju Text) You're typing a long text with a broken keyboard. Well it's not so badly broken. The only problem with the keyboard is that sometimes the "hom

11988 - Broken Keyboard (a.k.a. Beiju Text)

Broken Keyboard (a.k.a. Beiju Text) You're typing a long text with a broken keyboard. Well it's not so badly broken. The only problem with the keyboard is that sometimes the "home" key or the "end" key gets automatically pressed (inter

Uva11988 Broken Keyboard (a.k.a. Beiju Text)(就是先输出括号的字符)

Description Problem B Broken Keyboard (a.k.a. Beiju Text) You're typing a long text with a broken keyboard. Well it's not so badly broken. The only problem with the keyboard is that sometimes the "home" key or the "end" key gets automa

UVa 11988 - Broken Keyboard (a.k.a. Beiju Text) 题解

刘汝佳的题目,悲剧文本 -_-||| 这里使用vector<string>容器倒置记录数据,然后从后面输出就可以了. 难度就是不知道这样的文档到底哪里是开始输出,故此使用动态管理内存的容器比较好做. 增加了io处理的O(n)算法也没有上榜,郁闷. #include <stdio.h> #include <vector> #include <string> using std::vector; using std::string; const int MAX_

UVA11988 Broken Keyboard (a.k.a. Beiju Text)

看到大一练习题,睡前水一水~~~ Problem B Broken Keyboard (a.k.a. Beiju Text) You're typing a long text with a broken keyboard. Well it's not so badly broken. The only problem with the keyboard is that sometimes the "home" key or the "end" key gets a

B - Broken Keyboard (a.k.a. Beiju Text)

Problem B Broken Keyboard (a.k.a. Beiju Text) You're typing a long text with a broken keyboard. Well it's not so badly broken. The only problem with the keyboard is that sometimes the "home" key or the "end" key gets automatically pres

D - Broken Keyboard (a.k.a. Beiju Text) (破损的键盘)

You're typing a long text with a broken keyboard. Well it's not so badly broken. The only problem with the keyboard is that sometimes the "home" key or the "end" key gets automatically pressed (internally). You're not aware of this iss