Codeforces - 578A Hotelier(模拟)

该问题要求根据Amugae的记忆重建一个酒店房间的分配情况,酒店有10个房间,两个入口。顾客从左入口到达会被分配到最左边的空房间,从右入口到达则被分配到最右边的空房间。输入包含事件序列,输出所有房间的状态(0为空,1为已占用)。
摘要由CSDN通过智能技术生成

Amugae has a hotel consisting of 10 rooms. The rooms are numbered from 0 to 9 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 n (1≤n≤105), the number of events in Amugae’s memory.

The second line consists of a string of length n describing the events in chronological order. Each character represents:

‘L’: A customer arrives from the left entrance.
‘R’: A customer arrives from the right entrance.
‘0’, ‘1’, …, ‘9’: The customer in room x (0, 1, …, 9 respectively) leaves.
It is guaranteed that there is at least one empty room when a customer arrives, and there is a customer in the room x when x (0, 1, …, 9) is given. Also, all the rooms are initially empty.

Output
In the only line, output the hotel room’s assignment status, from room 0 to room 9. Represent an empty room as ‘0’, and an occupied room as ‘1’, without spaces.

Examples
inputCopy

8
LLRL1RL1
outputCopy
1010000011
inputCopy
9
L0L0LLRR9
outputCopy
1100000010
Note
In the first example, hotel room’s assignment status after each action is as follows.

First of all, all rooms are empty. Assignment status is 0000000000.
L: a customer arrives to the hotel through the left entrance. Assignment status is 1000000000.
L: one more customer from the left entrance. Assignment status is 1100000000.
R: one more customer from the right entrance. Assig

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值