zoukankan      html  css  js  c++  java
  • Epidemic in Monstropolis

    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 weightai.

    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, thej-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 printx — 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.

    分析:首先要判断总和是否相等;

       其次从左往右扫,一直到达当前b[i],达不到无解;

       最后如果区间里只有一个数,或区间不全为相同数(从最大的旁边有比他小的数吃),则可行;

    代码:

    #include <iostream>
    #include <cstdio>
    #include <cstdlib>
    #include <cmath>
    #include <algorithm>
    #include <climits>
    #include <cstring>
    #include <string>
    #include <set>
    #include <map>
    #include <unordered_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++)
    #define mod 1000000007
    #define inf 0x3f3f3f3f
    #define vi vector<int>
    #define pb push_back
    #define mp make_pair
    #define fi first
    #define se second
    #define ll long long
    #define pi acos(-1.0)
    #define pii pair<int,int>
    #define Lson L, mid, ls[rt]
    #define Rson mid+1, R, rs[rt]
    #define sys system("pause")
    #define freopen freopen("in.txt","r",stdin)
    const int maxn=1e5+10;
    using namespace std;
    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;}
    inline ll read()
    {
        ll x=0;int f=1;char ch=getchar();
        while(ch<'0'||ch>'9'){if(ch=='-')f=-1;ch=getchar();}
        while(ch>='0'&&ch<='9'){x=x*10+ch-'0';ch=getchar();}
        return x*f;
    }
    int n,m,k,t,ok,pos;
    ll a[maxn],b[maxn],now,sum1,sum2;
    queue<pair<int,char> >ans;
    bool flag;
    int main()
    {
        int i,j;
        flag=true;
        scanf("%d",&n);
        rep(i,1,n)scanf("%lld",&a[i]),sum1+=a[i];
        scanf("%d",&m);
        rep(i,1,m)scanf("%lld",&b[i]),sum2+=b[i];
        if(sum1!=sum2)return 0*puts("NO");
        pos=1;
        rep(i,1,m)
        {
            for(j=pos,now=0;j<=n&&now+a[j]<=b[i];now+=a[j],j++);
            if(now!=b[i])
            {
                flag=false;
                break;
            }
            else
            {
                ll ma=0;
                int now_pos;
                bool flag1=false;
                for(k=pos;k<j;k++)
                {
                    ma=max(ma,a[k]);
                    if(ma==a[k]&&((k>pos&&a[k]>a[k-1])||(k<j-1&&a[k]>a[k+1])))
                    {
                        flag1=true;
                        now_pos=k;
                    }
                }
                if(ma==b[i])
                {
                    pos=j;
                    continue;
                }
                if(!flag1)return 0*puts("NO");
                if(now_pos>pos&&a[now_pos]>a[now_pos-1])
                {
                    for(k=now_pos-1;k>=pos;k--)ans.push(mp(now_pos-ok,'L')),ok++,a[now_pos]+=a[k];
                    if(now_pos<j-1)
                    {
                        if(a[now_pos]==a[now_pos+1]){flag=false;break;}
                        for(k=now_pos+1;k<=j-1;k++)ans.push(mp(now_pos-ok,'R')),a[now_pos]+=a[k];
                        ok+=j-now_pos-1;
                    }
                }
                else if(now_pos<j-1&&a[now_pos]>a[now_pos+1])
                {
                    for(k=now_pos+1;k<=j-1;k++)ans.push(mp(now_pos-ok,'R')),a[now_pos]+=a[k];
                    if(now_pos>pos)
                    {
                        for(k=now_pos-1;k>=pos;k--)ans.push(mp(now_pos-ok,'L')),ok++,a[now_pos]+=a[k];
                    }
                    ok+=j-now_pos-1;
                }
            }
            pos=j;
        }
        if(flag)
        {
            puts("YES");
            while(!ans.empty())printf("%d %c
    ",ans.front().fi,ans.front().se),ans.pop();
        }
        else puts("NO");
        //system("Pause");
        return 0;
    }
  • 相关阅读:
    javascript 文档标题滚动 实例
    Unity3D初学之2D动画制
    Uni2D 入门 -- Skeletal Animation
    Uni2D 入门 -- Asset Table
    Uni2D 入门 -- Atlas转载 http://blog.csdn.net/kakashi8841/article/details/17588095
    Uni2D 入门 -- Animation Clip 和 Animation API
    Uni2D入门
    将博客搬至CSDN
    unity 2048Game
    c#单例模式
  • 原文地址:https://www.cnblogs.com/dyzll/p/6021566.html
Copyright © 2011-2022 走看看