CF89E.Fire and Ice

普及/提高-

通过率:0%

AC君温馨提醒

该题目为【codeforces】题库的题目,您提交的代码将被提交至codeforces进行远程评测,并由ACGO抓取测评结果后进行展示。由于远程测评的测评机由其他平台提供,我们无法保证该服务的稳定性,若提交后无反应,请等待一段时间后再进行重试。

题目描述

The Fire Lord attacked the Frost Kingdom. He has already got to the Ice Fortress, where the Snow Queen dwells. He arranged his army on a segment nn in length not far from the city walls. And only the frost magician Solomon can save the Frost Kingdom.

The nn -long segment is located at a distance equal exactly to 11 from the castle walls. It can be imaginarily divided into unit segments. On some of the unit segments fire demons are located — no more than one demon per position. Each demon is characterised by his strength - by some positive integer. We can regard the fire demons being idle.

Initially Solomon is positioned on the fortress wall. He can perform the following actions several times in a row:

  • "L" — Solomon shifts one unit to the left. This movement cannot be performed on the castle wall.
  • "R" — Solomon shifts one unit to the left. This movement cannot be performed if there's no ice block to the right.
  • "A" — If there's nothing to the right of Solomon, then Solomon creates an ice block that immediately freezes to the block that Solomon is currently standing on. If there already is an ice block, then Solomon destroys it. At that the ice blocks to the right of the destroyed one can remain but they are left unsupported. Those ice blocks fall down.

Solomon spends exactly a second on each of these actions.

As the result of Solomon's actions, ice blocks' segments fall down. When an ice block falls on a fire demon, the block evaporates and the demon's strength is reduced by 11 . When the demons' strength is equal to 00 , the fire demon vanishes. The picture below shows how it happens. The ice block that falls on the position with no demon, breaks into lots of tiny pieces and vanishes without hurting anybody.

Help Solomon destroy all the Fire Lord's army in minimum time.

输入格式

The first line contains an integer nn ( 1<=n<=10001<=n<=1000 ). The next line contains nn numbers, the ii -th of them represents the strength of the fire demon standing of the ii -th position, an integer from 11 to 100100 . If there's no demon on the ii -th position, then the ii -th number equals to 00 . It is guaranteed that the input data have at least one fire demon.

输出格式

Print a string of minimum length, containing characters "L", "R" and "A" — the succession of actions leading to the required result.

If there are several possible answers, print any of them.

输入输出样例

  • 输入#1

    3
    1 0 1
    

    输出#1

    ARARARALLLA
  • 输入#2

    3
    0 2 0
    

    输出#2

    ARARALAARALA
首页