跳到主要内容
图灵 OJTURING / ONLINE JUDGE

#F2645. TorCoder

    ID: 2651 传统题 2000ms 256MiB 尝试: 0 已通过: 0 难度: 9 上传者: 标签>数据结构挑战难度共享题库Codeforces英文题面题目来源题面语言

TorCoder

题目描述

F. TorCoder
time limit per test
3 seconds
memory limit per test
256 megabytes
input
input.txt
output
output.txt

A boy named Leo doesn't miss a single TorCoder contest round. On the last TorCoder round number 100666 Leo stumbled over the following problem. He was given a string s, consisting of n lowercase English letters, and m queries. Each query is characterised by a pair of integers li,ri (1≤lirin).

We'll consider the letters in the string numbered from 1 to n from left to right, that is, s=s1s2... sn.

After each query he must swap letters with indexes from li to ri inclusive in string s so as to make substring (li,ri) a palindrome. If there are multiple such letter permutations, you should choose the one where string (li,ri) will be lexicographically minimum. If no such permutation exists, you should ignore the query (that is, not change string s).

Everybody knows that on TorCoder rounds input line and array size limits never exceed 60, so Leo solved this problem easily. Your task is to solve the problem on a little bit larger limits. Given string s and m queries, print the string that results after applying all m queries to string s.

Input

The first input line contains two integers n and m (1≤n,m≤105) − the string length and the number of the queries.

The second line contains string s, consisting of n lowercase Latin letters.

Each of the next m lines contains a pair of integers li,ri (1≤lirin) − a query to apply to the string.

Output

In a single line print the result of applying m queries to string s. Print the queries in the order in which they are given in the input.

Examples
Input
7 2
aabcbaa
1 3
5 7
Output
abacaba
Input
3 2
abc
1 2
2 3
Output
abc
Note

A substring (li,ri) 1≤lirin) of string s=s1s2... sn of length n is a sequence of characters slisli+1...sri.

A string is a palindrome, if it reads the same from left to right and from right to left.

String x1x2... xp is lexicographically smaller than string y1y2... yq, if either p<q and x1=y1,x2=y2,... ,xp=yp, or exists such number r (r<p,r<q), that x1=y1,x2=y2,... ,xr=yr and xr+1<yr+1.


题目来源:fps-www.educg.net-codeforce-1-2833.xml.zip;FPS 共享题包,题包内第 2306 题。保留原作者与原赛事署名。