Lefthanders and Righthanders(CF-234A)

Problem Description

One fine October day a mathematics teacher Vasily Petrov went to a class and saw there n pupils who sat at the desks, two people at each desk. Vasily quickly realized that number n is even. Like all true mathematicians, Vasily has all students numbered from 1 to n.

But Vasily Petrov did not like the way the children were seated at the desks. According to him, the students whose numbers differ by 1, can not sit together, as they talk to each other all the time, distract others and misbehave.

On the other hand, if a righthanded student sits at the left end of the desk and a lefthanded student sits at the right end of the desk, they hit elbows all the time and distract each other. In other cases, the students who sit at the same desk, do not interfere with each other.

Vasily knows very well which students are lefthanders and which ones are righthanders, and he asks you to come up with any order that meets these two uncomplicated conditions (students do not talk to each other and do not bump their elbows). It is guaranteed that the input is such that at least one way to seat the students always exists.

Input

The first input line contains a single even integer n (4 ≤ n ≤ 100) — the number of students in the class. The second line contains exactly n capital English letters "L" and "R". If the i-th letter at the second line equals "L", then the student number i is a lefthander, otherwise he is a righthander.

Output

Print n/2 integer pairs, one pair per line. In the i-th line print the numbers of students that will sit at the i-th desk. The first number in the pair stands for the student who is sitting to the left, and the second number stands for the student who is sitting to the right. Separate the numbers in the pairs by spaces. If there are multiple solutions, print any of them.

Examples

Input

6
LLRLLL

Output

1 4
2 5
6 3

Input

4
RRLL

Output

3 1
4 2

Topic: n people, each person is left-handed and right-handed, numbered 1-N from back to front respectively. Now it is required that each two people sit together, the number of two people sitting together should be greater than 1, and if a left-handed and a right-handed sit together, the left-handed can not sit on the right, the right-handed can not sit on the left.

Thought: Thought

If the first person is left-handed, let him sit at the left end. If the second person is right-handed, let him sit at the right end. Then the person sitting with them, whether left-handed or right-handed, can be satisfied. At this time, only need to scan to n/2. Then let the first person sit with the first i+n/2 person.

In addition, pay attention to the use of file reading and writing

Source Program

#include<bits/stdc++.h>
#define Exp 1e-9
#define PI acos(-1.0)
#define INF 0x3f3f3f3f
#define LL long long
const int MOD = 1E9+7;
const int N = 10000+5;
const int dx[] = {-1,1,0,0,-1,-1,1,1};
const int dy[] = {0,0,-1,1,-1,1,-1,1};
using namespace std;
char str[N];
int main(){
    freopen("input.txt","r",stdin);
    freopen("output.txt","w",stdout);
    int n;
    scanf("%d",&n);
    scanf("%s",str+1);
    int pos=n/2;
    for(int i=1;i<=pos;i++){
        if(str[i]=='L')
            printf("%d %d\n",i,i+pos);
        else if(str[i]=='R')
            printf("%d %d\n",i+pos,i);
    }
    return 0;
}

 

Posted by thefury on Tue, 30 Jul 2019 18:56:06 -0700