Broken Keyboard UVa11988

本题关键为链表的数组实现,用nxt数组模拟txt中元素之间的指向关系。 构造nxt数组时,头元素指向尾0,遍历txt并将元素的指向关系插入到nxt中。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
#include <iostream>
#include <cstring>
using namespace std;
int nxt[100005];
char txt[100005];
int main()
{
while (cin >> txt + 1)
{
int i = 1, len = strlen(txt + 1), last = 0, ans = 0;
nxt[0] = 0;
while (i <= len)
{
if (txt[i] == '[')
{
ans = 0;
}
else if (txt[i] == ']')
{
ans = last;
}
else
{
nxt[i] = nxt[ans];
nxt[ans] = i;
if (ans == last)
last = i;
ans = i;
}
i++;
}
for (int i = nxt[0]; i; i = nxt[i])
cout << txt[i];
cout << endl;
}
return 0;
}