303800: CF733C. Epidemic in Monstropolis

Memory Limit:256 MB Time Limit:1 S
Judge Style:Text Compare Creator:
Submit:0 Solved:0

Description

Epidemic in Monstropolis

题意翻译

有 $n$ 个怪兽,第 $i$ 个的重量是 $a_i$。 一秒钟内,能让恰好一个怪兽吃掉相邻的比它重量小的怪兽。重量大的重量加上重量小的的重量;重量小的怪兽死掉。死后重新靠拢。 求一种顺序,变成:共 $k$ 个怪兽,第 $j$ 个的重量是 $b_j$。

题目描述

There was an epidemic in Monstropolis and all monsters became sick. To recover, all monsters lined up in queue for an appointment to the only doctor in the city. Soon, monsters became hungry and began to eat each other. One monster can eat other monster if its weight is strictly greater than the weight of the monster being eaten, and they stand in the queue next to each other. Monsters eat each other instantly. There are no monsters which are being eaten at the same moment. After the monster $ A $ eats the monster $ B $ , the weight of the monster $ A $ increases by the weight of the eaten monster $ B $ . In result of such eating the length of the queue decreases by one, all monsters after the eaten one step forward so that there is no empty places in the queue again. A monster can eat several monsters one after another. Initially there were $ n $ monsters in the queue, the $ i $ -th of which had weight $ a_{i} $ . For example, if weights are $ [1,2,2,2,1,2] $ (in order of queue, monsters are numbered from $ 1 $ to $ 6 $ from left to right) then some of the options are: 1. the first monster can't eat the second monster because $ a_{1}=1 $ is not greater than $ a_{2}=2 $ ; 2. the second monster can't eat the third monster because $ a_{2}=2 $ is not greater than $ a_{3}=2 $ ; 3. the second monster can't eat the fifth monster because they are not neighbors; 4. the second monster can eat the first monster, the queue will be transformed to $ [3,2,2,1,2] $ . After some time, someone said a good joke and all monsters recovered. At that moment there were $ k $ ( $ k<=n $ ) monsters in the queue, the $ j $ -th of which had weight $ b_{j} $ . Both sequences ( $ a $ and $ b $ ) contain the weights of the monsters in the order from the first to the last. You are required to provide one of the possible orders of eating monsters which led to the current queue, or to determine that this could not happen. Assume that the doctor didn't make any appointments while monsters were eating each other.

输入输出格式

输入格式


The first line contains single integer $ n $ ( $ 1<=n<=500 $ ) — the number of monsters in the initial queue. The second line contains $ n $ integers $ a_{1},a_{2},...,a_{n} $ ( $ 1<=a_{i}<=10^{6} $ ) — the initial weights of the monsters. The third line contains single integer $ k $ ( $ 1<=k<=n $ ) — the number of monsters in the queue after the joke. The fourth line contains $ k $ integers $ b_{1},b_{2},...,b_{k} $ ( $ 1<=b_{j}<=5·10^{8} $ ) — the weights of the monsters after the joke. Monsters are listed in the order from the beginning of the queue to the end.

输出格式


In case if no actions could lead to the final queue, print "NO" (without quotes) in the only line. Otherwise print "YES" (without quotes) in the first line. In the next $ n-k $ lines print actions in the chronological order. In each line print $ x $ — the index number of the monster in the current queue which eats and, separated by space, the symbol 'L' if the monster which stays the $ x $ -th in the queue eats the monster in front of him, or 'R' if the monster which stays the $ x $ -th in the queue eats the monster behind him. After each eating the queue is enumerated again. When one monster eats another the queue decreases. If there are several answers, print any of them.

输入输出样例

输入样例 #1

6
1 2 2 2 1 2
2
5 5

输出样例 #1

YES
2 L
1 R
4 L
3 L

输入样例 #2

5
1 2 3 4 5
1
15

输出样例 #2

YES
5 L
4 L
3 L
2 L

输入样例 #3

5
1 1 1 3 3
3
2 1 6

输出样例 #3

NO

说明

In the first example, initially there were $ n=6 $ monsters, their weights are $ [1,2,2,2,1,2] $ (in order of queue from the first monster to the last monster). The final queue should be $ [5,5] $ . The following sequence of eatings leads to the final queue: - the second monster eats the monster to the left (i.e. the first monster), queue becomes $ [3,2,2,1,2] $ ; - the first monster (note, it was the second on the previous step) eats the monster to the right (i.e. the second monster), queue becomes $ [5,2,1,2] $ ; - the fourth monster eats the mosnter to the left (i.e. the third monster), queue becomes $ [5,2,3] $ ; - the finally, the third monster eats the monster to the left (i.e. the second monster), queue becomes $ [5,5] $ . Note that for each step the output contains numbers of the monsters in their current order in the queue.

Input

题意翻译

有 $n$ 个怪兽,第 $i$ 个的重量是 $a_i$。 一秒钟内,能让恰好一个怪兽吃掉相邻的比它重量小的怪兽。重量大的重量加上重量小的的重量;重量小的怪兽死掉。死后重新靠拢。 求一种顺序,变成:共 $k$ 个怪兽,第 $j$ 个的重量是 $b_j$。

加入题单

算法标签: