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 ai.
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:
- the first monster can't eat the second monster because a1 = 1 is not greater than a2 = 2;
- the second monster can't eat the third monster because a2 = 2 is not greater than a3 = 2;
- the second monster can't eat the fifth monster because they are not neighbors;
- 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 bj. 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 a1, a2, ..., an (1 ≤ ai ≤ 106) — 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 b1, b2, ..., bk (1 ≤ bj ≤ 5·108) — 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.
6 1 2 2 2 1 2 2 5 5
YES 2 L 1 R 4 L 3 L
5 1 2 3 4 5 1 15
YES 5 L 4 L 3 L 2 L
5 1 1 1 3 3 3 2 1 6
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.
#include <iostream>
#include <cstdio>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <climits>
#include <cstring>
#include <string>
#include <set>
#include <map>
#include <queue>
#include <stack>
#include <vector>
#include <list>
#define rep(i,m,n) for(i=m;i<=n;i++)
#define rsp(it,s) for(set<int>::iterator it=s.begin();it!=s.end();it++)
const int inf_int = 2e9;
const long long inf_ll = 2e18;
#define inf_add 0x3f3f3f3f
#define mod 1000000007
#define vi vector<int>
#define pb push_back
#define mp make_pair
#define fi first
#define se second
#define pi acos(-1.0)
#define pii pair<int,int>
#define Lson L, mid, rt<<1
#define Rson mid+1, R, rt<<1|1
const int maxn=5e2+10;
using namespace std;
typedef long long ll;
typedef unsigned long long ull;
inline int read(){int ra,fh;char rx;rx=getchar(),ra=0,fh=1;
while((rx<'0'||rx>'9')&&rx!='-')rx=getchar();if(rx=='-')
fh=-1,rx=getchar();while(rx>='0'&&rx<='9')ra*=10,ra+=rx-48,
rx=getchar();return ra*fh;}
//#pragma comment(linker, "/STACK:102400000,102400000")
ll gcd(ll p,ll q){return q==0?p:gcd(q,p%q);}
ll qpow(ll p,ll q){ll f=1;while(q){if(q&1)f=f*p;p=p*p;q>>=1;}return f;}
typedef struct node{
int x;
char ch;
}NODE;
NODE re[1000];
vector<ll> a;
vector<ll> b;
vector<ll>::iterator it;
int main()
{
int n;
int k;
ll t;
ll sum1=0,sum2=0;
cin >> n;
a.push_back(0);
b.push_back(0);
for(int i=1;i<=n;i++)
{
cin >> t;
sum1+=t;
a.push_back(t);
}
cin >> k;
for(int i=1;i<=k;i++)
{
cin >> t;
sum2+=t;
b.push_back(t);
}
if(sum1!=sum2)//首先判断其总和是否符合条件
{
cout << "NO" <<endl;
return 0;
}
ll renum = 0;
int t1 = 0;
for(int i=1;i<=k;i++)
{
ll sum = 0;
int flag = 0;
for(int j=1;j<=n;j++)
{
sum+=a[j];
if(sum >= b[i])
{
if(sum>b[i])
{
cout << "NO" <<endl;
return 0;
}
flag = j;
break;
}
}
//判断是否都是相同的
t1 = 0;
if(flag == 1)
t1 =1;
else
{
for(int k1=1;k1<flag;k1++)
{
if(a[k1]!=a[k1+1])
{
t1= 1;
}
}
}
if(!t1)
{
cout << "NO" <<endl;
return 0;
}
for(int k1=1;k1<flag;k1++)
{
for(int j=1;j<flag-k1+1;j++)
{
if(a[j]!=a[j+1])
{
if(flag-k1+1-j>1)
{
if(a[j]+a[j+1]==a[j+2])//避免出现相加后数量相同的情况2、3、5
continue;
}
if(a[j]>a[j+1])
{
re[renum].ch='R';
re[renum].x =j+i-1;
renum++;
a[j] += a[j+1];
a.erase(a.begin()+j+1);
}
else
{
re[renum].ch='L';
re[renum].x =j+1+i-1;
renum++;
a[j+1] += a[j];
a.erase(a.begin()+j);
}
break;
}
}
}
a.erase(a.begin()+1);
}
cout << "YES" <<endl;
for(int i=0;i<renum;i++)
{
cout << re[i].x << " "<< re[i].ch <<endl;
}
return 0;
}