Amugae has a hotel consisting of 1010 rooms. The rooms are numbered from 00 to 99 from left to right.
The hotel has two entrances — one from the left end, and another from the right end. When a customer arrives to the hotel through the left entrance, they are assigned to an empty room closest to the left entrance. Similarly, when a customer arrives at the hotel through the right entrance, they are assigned to an empty room closest to the right entrance.
One day, Amugae lost the room assignment list. Thankfully Amugae's memory is perfect, and he remembers all of the customers: when a customer arrived, from which entrance, and when they left the hotel. Initially the hotel was empty. Write a program that recovers the room assignment list from Amugae's memory.
Input
The first line consists of an integer nn (1 \le n \le 10^51≤n≤105), the number of events in Amugae's memory.
The second line consists of a string of length nn describing the events in chronological order. Each character represents:
It is guaranteed that there is at least one empty room when a customer arrives, and there is a customer in the room xx when xx (00, 11, ..., 99) is given. Also, all the rooms are initially empty.
Output
In the only line, output the hotel room's assignment status, from room 00 to room 99. Represent an empty room as '0', and an occupied room as '1', without spaces.
Examples
Input
8 LLRL1RL1
Output
1010000011
Input
9 L0L0LLRR9
Output
1100000010
Note
In the first example, hotel room's assignment status after each action is as follows.
So after all, hotel room's final assignment status is 1010000011.
In the second example, hotel room's assignment status after each action is as follows.
So after all, hotel room's final assignment status is 1100000010.
#include<iostream>
using namespace std;
#include<string>
#include<algorithm>
#pragma warning (disable:4996)
#include <climits>
#include <vector>
bool book[10];
int main() {
int n;
cin >> n;
getchar();
for (int cnt = 0; cnt < n; cnt++) {
char temp = getchar();
if (temp >= '0' && temp <= '9')
book[temp - '0'] = 0;
if (temp == 'L') {
for (int cnt1 = 0; cnt1 < n; cnt1++) {
if (!book[cnt1]) {
book[cnt1] = 1;
break;
}
}
}
if (temp == 'R') {
for (int cnt1 = 9; cnt1 >= 0; cnt1--) {
if (!book[cnt1]) {
book[cnt1] = 1;
break;
}
}
}
}
for (int cnt = 0; cnt < 10; cnt++) {
cout << book[cnt];
}
return 0;
}
说实话吗,这道题我卡住了,因为我提前没注意到它的数据大小是n只有10.............