您的位置:首页 > 其它

CodeForces 670E(模拟双向链表)

2016-05-08 23:22 260 查看
题意:给你一串合法的括号和当前光标的位置和一些操作,问操作完之后的串是怎么样的

思路:模拟一个双向链表的操作,首先先预处理出配对的括号组,然后模拟即可

#include<bits\stdc++.h>
using namespace std;
const int maxn = 1e6;
struct Node
{
int l,r;
}nodes[maxn];
char s1[maxn],s2[maxn];
int a[maxn],d[maxn];
int main()
{
int n,m,pos;
scanf("%d%d%d",&n,&m,&pos);
scanf("%s",s1+1);
int len = strlen(s1+1);
for (int i = 0;i<=n+1;i++)
nodes[i].l=i-1,nodes[i].r=i+1;
int now = 0;
for (int i = 1;i<=len;i++)
{
if(s1[i]=='(')
a[now++]=i;
else
d[i]=a[--now],d[a[now]]=i;
}
scanf("%s",s2+1);
//	int pos = 0;
for (int i = 1;i<=m;i++)
{
if (s2[i]=='R')
pos = nodes[pos].r;
else if (s2[i]=='L')
pos = nodes[pos].l;
else
{
int l = min(d[pos],pos);
int r = max(d[pos],pos);
nodes[nodes[l].l].r=nodes[r].r;
nodes[nodes[r].r].l=nodes[l].l;
pos = nodes[r].r;
if (pos==n+1)
pos = nodes[n+1].l;
if(!pos)
pos = nodes[0].r;
}
}
pos = nodes[0].r;
while(pos!=n+1)
{
printf("%c",s1[pos]);
pos = nodes[pos].r;
}
printf("\n");
}


Description

Recently Polycarp started to develop a text editor that works only with correct bracket sequences (abbreviated as CBS).

Note that a bracket sequence is correct if it is possible to get a correct mathematical expression by adding "+"-s and "1"-s to it. For example, sequences "(())()",
"()" and "(()(()))" are correct, while ")(", "(()" and "(()))("
are not. Each bracket in CBS has a pair. For example, in "(()(()))":

1st bracket is paired with 8th,
2d bracket is paired with 3d,
3d bracket is paired with 2d,
4th bracket is paired with 7th,
5th bracket is paired with 6th,
6th bracket is paired with 5th,
7th bracket is paired with 4th,
8th bracket is paired with 1st.

Polycarp's editor currently supports only three operations during the use of CBS. The cursor in the editor takes the whole position of one of the brackets (not the position between the brackets!). There are three operations being supported:

«L» — move the cursor one position to the left,
«R» — move the cursor one position to the right,
«D» — delete the bracket in which the cursor is located, delete the bracket it's paired to and all brackets between them (that is, delete a substring between the bracket in which the cursor is located and the one it's
paired to).

After the operation "D" the cursor moves to the nearest bracket to the right (of course, among the non-deleted). If there is no such bracket (that is, the suffix of the CBS was deleted), then the cursor moves to the
nearest bracket to the left (of course, among the non-deleted).

There are pictures illustrated several usages of operation "D" below.



All incorrect operations (shift cursor over the end of CBS, delete the whole CBS, etc.) are not supported by Polycarp's editor.

Polycarp is very proud of his development, can you implement the functionality of his editor?

Input

The first line contains three positive integers n, m and p (2 ≤ n ≤ 500 000, 1 ≤ m ≤ 500 000, 1 ≤ p ≤ n) —
the number of brackets in the correct bracket sequence, the number of operations and the initial position of cursor. Positions in the sequence are numbered from left to right, starting from one. It is guaranteed that n is
even.

It is followed by the string of n characters "(" and ")" forming the correct bracket sequence.

Then follow a string of m characters "L", "R" and "D" — a sequence of the
operations. Operations are carried out one by one from the first to the last. It is guaranteed that the given operations never move the cursor outside the bracket sequence, as well as the fact that after all operations a bracket sequence will be non-empty.

Output

Print the correct bracket sequence, obtained as a result of applying all operations to the initial sequence.

Sample Input

Input
8 4 5
(())()()
RDLD


Output
()


Input
12 5 3
((()())(()))
RRDLD


Output
(()(()))


Input
8 8 8
(())()()LLLLLLDD


Output
()()
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: