• 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
    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[505],n,k,b[505];
    struct node
    {
        int l,r;
    };
    node fr[505];
    int main()
    {
        //freopen("C:\Users\acer\Desktop\in.txt","r",stdin);
        vector<int>v;
        v.clear();
        scanf("%d",&n);
        for(int i=1;i<=n;i++)
            scanf("%d",&a[i]);
        scanf("%d",&k);
        for(int i=1;i<=k;i++)
            scanf("%d",&b[i]);
        int j=1;
        int f=0;
        int s=0;
        fr[1].l=1;
        for(int i=1;i<=n;i++)
        {
            s+=a[i];
            if(s==b[j])
            {
                s=0;
                fr[j].r=i;
                j++;
                fr[j].l=i+1;
            }
            else if(s>b[j])
            {
                //cout<<s<<" "<<b[j]<<endl;
                f=1;
                break;
            }
        }
        if(f==1||j!=k+1)
        {
            //cout<<"111"<<endl;
            puts("NO");
        }
        else
        {
            vector<int >v2;
            v2.clear();
            vector<int >v3;
            v3.clear();
            int f1=1;
            for(int i=1;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=0;///记录吃的次数
                if(v2.size()==1)
                    continue;
                while(v2.size()>1)
                {
                    //cout<<"c="<<c<<" v2.size()="<<v2.size()<<endl;
                    //for(int i=0;i<v2.size();i++)
                    //    cout<<v2[i]<<" ";
                    //cout<<endl;
                    int maxn=-1;
                    int id=0;
                    int q=v2.size();
                    for(int j=0;j<q;j++)
                    {
                        if(v2[j]>maxn)
                        {
                            maxn=v2[j];
                            id=j;
                        }
                    }
                    if(id==0)
                    {
                        if(v2[0]>v2[1])
                        {
                            string s="";
                            v.push_back(0+i);
                            v.push_back('R');
                            v3.clear();
                            v3.push_back(v2[0]+v2[1]);
                            for(int k=2;k<q;k++)
                                v3.push_back(v2[k]);
                            v2.clear();
                            v2=v3;
                        }
                    }
                    else if(id==q-1)
                    {
                        if(v2[q-1]>v2[q-2])
                        {
                            v.push_back(q-1+i);
                            v.push_back('L');
                            v3.clear();
                            for(int k=0;k<q-2;k++)
                                v3.push_back(v2[k]);
                            v3.push_back(v2[q-1]+v2[q-2]);
                            v2.clear();
                            v2=v3;
                        }
                    }
                    else
                    {
                        if(v2[id]>v2[id+1])
                        {
                            v.push_back(id+i);
                            v.push_back('R');
                            v3.clear();
                            for(int k=0;k<q;k++)
                            {
                                if(k==id) v3.push_back(v2[id]+v2[id+1]);
                                else if(k!=id+1) v3.push_back(v2[k]);
                            }
                            v2.clear();
                            v2=v3;
                        }
                        else if(v2[id]>v2[id-1])
                        {
                            v.push_back(id+i);
                            v.push_back('L');
                            v3.clear();
                            for(int k=0;k<q;k++)
                            {
                                if(k==id) v3.push_back(v2[id]+v2[id+1]);
                                else if(k!=id-1)v3.push_back(v2[k]);
                            }
                            v2.clear();
                            v2=v3;
                        }
                    }
                    if(v2.size()==q)///就是最大的旁边吃不了
                    {
                        //cout<<"第一遍没找到最大的"<<endl;
                        for(int j=0;j<q;j++)
                        {
                            if(v2[j]==maxn)
                            {
                                if(j==0)
                                {
                                    if(v2[0]>v2[1])
                                    {
                                        string s="";
                                        v.push_back(0+i);
                                        v.push_back('R');
                                        v3.clear();
                                        v3.push_back(v2[0]+v2[1]);
                                        for(int k=2;k<q;k++)
                                            v3.push_back(v2[k]);
                                        v2.clear();
                                        v2=v3;
                                        break;
                                    }
                                }
                                else if(j==q-1)
                                {
                                    if(v2[q-1]>v2[q-2])
                                    {
                                        v.push_back(q-1+i);
                                        v.push_back('L');
                                        v3.clear();
                                        for(int k=0;k<q-2;k++)
                                            v3.push_back(v2[k]);
                                        v3.push_back(v2[q-1]+v2[q-2]);
                                        v2.clear();
                                        v2=v3;
                                        break;
                                    }
                                }
                                else
                                {
                                    if(v2[j]>v2[j+1])
                                    {
                                        v.push_back(j+i);
                                        v.push_back('R');
                                        v3.clear();
                                        for(int k=0;k<q;k++)
                                        {
                                            if(k==j) v3.push_back(v2[j]+v2[j+1]);
                                            else if(k!=j+1) v3.push_back(v2[k]);
                                        }
                                        v2.clear();
                                        v2=v3;
                                        break;
                                    }
                                    else if(v2[j]>v2[j-1])
                                    {
                                        v.push_back(j+i);
                                        v.push_back('L');
                                        v3.clear();
                                        for(int k=0;k<q;k++)
                                        {
                                            if(k==id) v3.push_back(v2[j]+v2[j+1]);
                                            else if(k!=j-1)v3.push_back(v2[k]);
                                        }
                                        v2.clear();
                                        v2=v3;
                                        break;
                                    }
                                }
                            }
                        }
                    }
                    c++;
                    if(c>fr[i].r-fr[i].l)
                    {
                        f1=0;
                        break;
                    }
                }
                if(f1==0)
                    break;
            }
            if(f1)
            {
                puts("YES");
                for(int i=0;i<v.size();i+=2)
                    printf("%d %c
    ",v[i],v[i+1]);
            }
            else
                puts("NO");
        }
        return 0;
    }
  • 相关阅读:
    lr 增强窗格中,如何生成调试信息?
    lr 自带的例子,如何进行关联,通过代码的函数进行实现
    lr11 录制脚本时候,无法自动启动ie,查了网上很多方法都未解决?
    loadrunner11 录制脚步不成功,在录制概要出现“No Events were detected”,浮动窗口总是显示“0 Events”,解决办法
    loadrunner11 安装及破解教程来自百度文库
    安装loadrunner11 ,出现如下错误如何解决?
    回收站数据删除了,如何进行恢复?
    网管工作方面——————打印机删除了然后开机重启他依然存在,如何解决
    Windows 不能在 本地计算机 启动 SQL Server 服务 错误代码126
    Sorry, the page you are looking for is currently unavailable. Please try again later. Nginx
  • 原文地址:https://www.cnblogs.com/wuwangchuxin0924/p/6019022.html
Copyright © 2020-2023  润新知