C. Epidemic in Monstropolis
time limit per test

1 second

memory limit per test

256 megabytes

input

standard input

output

standard output

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:

  1. the first monster can't eat the second monster because a1 = 1 is not greater than a2 = 2;
  2. the second monster can't eat the third monster because a2 = 2 is not greater than a3 = 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 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.

Input

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.

Output

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.

Examples
Input
6
1 2 2 2 1 2
2
5 5
Output
YES
2 L
1 R
4 L
3 L
Input
5
1 2 3 4 5
1
15
Output
YES
5 L
4 L
3 L
2 L
Input
5
1 1 1 3 3
3
2 1 6
Output
NO
Note

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<bits/stdc++.h>
using namespace std;
int a[],n,k,b[];
struct node
{
int l,r;
};
node fr[];
int main()
{
//freopen("C:\\Users\\acer\\Desktop\\in.txt","r",stdin);
vector<int>v;
v.clear();
scanf("%d",&n);
for(int i=;i<=n;i++)
scanf("%d",&a[i]);
scanf("%d",&k);
for(int i=;i<=k;i++)
scanf("%d",&b[i]);
int j=;
int f=;
int s=;
fr[].l=;
for(int i=;i<=n;i++)
{
s+=a[i];
if(s==b[j])
{
s=;
fr[j].r=i;
j++;
fr[j].l=i+;
}
else if(s>b[j])
{
//cout<<s<<" "<<b[j]<<endl;
f=;
break;
}
}
if(f==||j!=k+)
{
//cout<<"111"<<endl;
puts("NO");
}
else
{
vector<int >v2;
v2.clear();
vector<int >v3;
v3.clear();
int f1=;
for(int i=;i<=k;i++)///枚举线段
{
v2.clear();v3.clear();
for(int j=fr[i].l;j<=fr[i].r;j++)
{
v2.push_back(a[j]);
}///装进相应的数
int c=;///记录吃的次数
if(v2.size()==)
continue;
while(v2.size()>)
{
//cout<<"c="<<c<<" v2.size()="<<v2.size()<<endl;
//for(int i=0;i<v2.size();i++)
// cout<<v2[i]<<" ";
//cout<<endl;
int maxn=-;
int id=;
int q=v2.size();
for(int j=;j<q;j++)
{
if(v2[j]>maxn)
{
maxn=v2[j];
id=j;
}
}
if(id==)
{
if(v2[]>v2[])
{
string s="";
v.push_back(+i);
v.push_back('R');
v3.clear();
v3.push_back(v2[]+v2[]);
for(int k=;k<q;k++)
v3.push_back(v2[k]);
v2.clear();
v2=v3;
}
}
else if(id==q-)
{
if(v2[q-]>v2[q-])
{
v.push_back(q-+i);
v.push_back('L');
v3.clear();
for(int k=;k<q-;k++)
v3.push_back(v2[k]);
v3.push_back(v2[q-]+v2[q-]);
v2.clear();
v2=v3;
}
}
else
{
if(v2[id]>v2[id+])
{
v.push_back(id+i);
v.push_back('R');
v3.clear();
for(int k=;k<q;k++)
{
if(k==id) v3.push_back(v2[id]+v2[id+]);
else if(k!=id+) v3.push_back(v2[k]);
}
v2.clear();
v2=v3;
}
else if(v2[id]>v2[id-])
{
v.push_back(id+i);
v.push_back('L');
v3.clear();
for(int k=;k<q;k++)
{
if(k==id) v3.push_back(v2[id]+v2[id+]);
else if(k!=id-)v3.push_back(v2[k]);
}
v2.clear();
v2=v3;
}
}
if(v2.size()==q)///就是最大的旁边吃不了
{
//cout<<"第一遍没找到最大的"<<endl;
for(int j=;j<q;j++)
{
if(v2[j]==maxn)
{
if(j==)
{
if(v2[]>v2[])
{
string s="";
v.push_back(+i);
v.push_back('R');
v3.clear();
v3.push_back(v2[]+v2[]);
for(int k=;k<q;k++)
v3.push_back(v2[k]);
v2.clear();
v2=v3;
break;
}
}
else if(j==q-)
{
if(v2[q-]>v2[q-])
{
v.push_back(q-+i);
v.push_back('L');
v3.clear();
for(int k=;k<q-;k++)
v3.push_back(v2[k]);
v3.push_back(v2[q-]+v2[q-]);
v2.clear();
v2=v3;
break;
}
}
else
{
if(v2[j]>v2[j+])
{
v.push_back(j+i);
v.push_back('R');
v3.clear();
for(int k=;k<q;k++)
{
if(k==j) v3.push_back(v2[j]+v2[j+]);
else if(k!=j+) v3.push_back(v2[k]);
}
v2.clear();
v2=v3;
break;
}
else if(v2[j]>v2[j-])
{
v.push_back(j+i);
v.push_back('L');
v3.clear();
for(int k=;k<q;k++)
{
if(k==id) v3.push_back(v2[j]+v2[j+]);
else if(k!=j-)v3.push_back(v2[k]);
}
v2.clear();
v2=v3;
break;
}
}
}
}
}
c++;
if(c>fr[i].r-fr[i].l)
{
f1=;
break;
}
}
if(f1==)
break;
}
if(f1)
{
puts("YES");
for(int i=;i<v.size();i+=)
printf("%d %c\n",v[i],v[i+]);
}
else
puts("NO");
}
return ;
}

Codeforces Round #378 (Div. 2)-C. Epidemic in Monstropolis的更多相关文章

  1. Codeforces Round #378 (Div. 2) C. Epidemic in Monstropolis 模拟

    C. Epidemic in Monstropolis time limit per test 1 second memory limit per test 256 megabytes input s ...

  2. Codeforces Round #378 (Div. 2) D题(data structure)解题报告

    题目地址 先简单的总结一下这次CF,前两道题非常的水,可是第一题又是因为自己想的不够周到而被Hack了一次(或许也应该感谢这个hack我的人,使我没有最后在赛后测试中WA).做到C题时看到题目情况非常 ...

  3. Codeforces Round #378 (Div. 2) A B C D 施工中

    A. Grasshopper And the String time limit per test 1 second memory limit per test 256 megabytes input ...

  4. Codeforces Round #378 (Div. 2)F - Drivers Dissatisfaction GNU

    http://codeforces.com/contest/733/problem/F 题意:给你一些城市和一些路,每条路有不满意程度和每减少一点不满意程度的花费,给出最大花费,要求找出花费小于s的最 ...

  5. Codeforces Round #378 (Div. 2) D. Kostya the Sculptor 分组 + 贪心

    http://codeforces.com/contest/733/problem/D 给定n个长方体,然后每个长方体都能选择任何一个面,去和其他长方体接在一起,也可以自己一个,要求使得新的长方体的最 ...

  6. Codeforces Round #378 (Div. 2)

    A: 思路: 水题,没啥意思; B: 思路: 暴力,也没啥意思; C: 思路: 思维,可以发现从前往后和为b[i]的分成一块,然后这一块里面如果都相同就没法开始吃,然后再暴力找到那个最大的且能一开始就 ...

  7. Codeforces Round #378 (Div. 2) C D

    在实验室通宵 一边做水题一边准备随时躲起来以免被门卫大爷巡查发现..结果居然没来.. 本来以为可以加几分变个颜色..结果挂了CD...状态有点差...思维不太活跃 沉迷暴力不能自拔 D 给出n个长方体 ...

  8. Codeforces Round #378 (Div. 2) D - Kostya the Sculptor

    Kostya the Sculptor 这次cf打的又是心累啊,果然我太菜,真的该认真学习,不要随便的浪费时间啦 [题目链接]Kostya the Sculptor &题意: 给你n个长方体, ...

  9. Codeforces Round #378 (Div. 2) D. Kostya the Sculptor map+pair

    D. Kostya the Sculptor time limit per test 3 seconds memory limit per test 256 megabytes input stand ...

随机推荐

  1. 回文词_KEY

    回文词 (palin.pas/c/cpp) [问题描述] 回文词是一种对称的字符串--也就是说,一个回文词,从左到右读和从右到左读得的结果是一样的.任意给定一个字符串,通过插入若干字符,都可以变成一个 ...

  2. Lodop 动态加载模板,动态加载数据

    最近需要使用Lodop打印控件,所以就研究了一下,期间从网上找了诸多的东西,基本全是对HTML进行打印的,没有找到我想要的,就只好自己动手丰衣足食. 这篇文章主要讲述的是Lodop与数据的结合使用,官 ...

  3. 已被.NET基金会认可的弹性和瞬态故障处理库Polly介绍

    前言 本节我们来介绍一款强大的库Polly,Polly是一种.NET弹性和瞬态故障处理库,允许我们以非常顺畅和线程安全的方式来执诸如行重试,断路,超时,故障恢复等策略. Polly针对对.NET 4. ...

  4. 理解ES6——Promise

    浏览器的控制台真是个好东西,啥都能干: 这就是Promise,能看出来啥? 1.是个构造函数,可以new实例. 2.自身有一些方法:all.race.reject.resolve... 3.原型上有c ...

  5. css3换行的三方式的对比(整理)

    CSS3 文本换行 (转载..) 作者 张歆琳 关注 2016.06.20 10:49* 字数 1101 阅读 676评论 1喜欢 6 文本换行其实是个非常常用但并不起眼的特性.你什么都不用设,浏览器 ...

  6. Qt中的坐标系统

    Qt使用统一的坐标系统来定位窗口部件的位置和大小. 以屏幕的左上角为原点即(0, 0)点,从左向右为x轴正向,从上向下为y轴正向,这整个屏幕的坐标系统就用来定位顶层窗口: 此外,窗口内部也有自己的坐标 ...

  7. python中html解析-Beautiful Soup

    1. Beautiful Soup的简介 简单来说,Beautiful Soup是python的一个库,最主要的功能是从网页抓取数据.官方解释如下: Beautiful Soup提供一些简单的.pyt ...

  8. px转vw和vh的工具(对前端同学有用)

    CSS3中有两个新尺寸单位vw和vh, 这两个单位非常适合于开发移动端自适应页面. 假如说有一个设计师做了一张1136x750px的页面,这长页面是针对iPhone6的屏幕设计的. 前端开发工程师将这 ...

  9. vDSP加速的应用

    vDSP 是IOS提供一系列加速处理算法..在优化时可以考虑应用一二... 1.在项目中加入Accelerate.framework库 点开项目属性->Build Phases->Link ...

  10. [scrapy]使用Anaconda来搭建scrapy的运行环境。官方推荐方法。

    1.官方文档推荐. 2.一般情况下多数人使用框架的时候使用的是,安装pywin32,和openssl来搭建scrapy的运行环境.但是由于,在这样搭建环境中会遇到各种各样的问题,诸如:下载的版本有问题 ...