zoukankan      html  css  js  c++  java
  • 祖玛(Zuma)

    清华OJ——数据结构与算法实验(中国石油大学)

    祖玛(Zuma)


    Description

    Let's play the game Zuma!

    There are a sequence of beads on a track at the right beginning. All the beads are colored but no three adjacent ones are allowed to be with a same color. You can then insert beads one by one into the sequence. Once three (or more) beads with a same color become adjacent due to an insertion, they will vanish immediately.

    Note that it is possible for such a case to happen for more than once for a single insertion. You can't insert the next bead until all the eliminations have been done.

    Given both the initial sequence and the insertion series, you are now asked by the fans to provide a playback tool for replaying their games. In other words, the sequence of beads after all possible eliminations as a result of each insertion should be calculated.

    Input

    The first line gives the initial bead sequence. Namely, it is a string of capital letters from 'A' to 'Z', where different letters correspond to beads with different colors.

    The second line just consists of a single interger n, i.e., the number of insertions.

    The following n lines tell all the insertions in turn. Each contains an integer k and a capital letter Σ, giving the rank and the color of the next bead to be inserted respectively. Specifically, k ranges from 0 to m when there are currently m beads on the track.

    Output

    n lines of capital letters, i.e., the evolutionary history of the bead sequence.

    Specially, "-" stands for an empty sequence.

    Example

    Input

    ACCBA
    5
    1 B
    0 A
    2 B
    4 C
    0 A
    

    Output

    ABCCBA
    AABCCBA
    AABBCCBA
    -
    A
    

    Restrictions

    0 <= n <= 10^4

    0 <= length of the initial sequence <= 10^4

    Time: 2 sec

    Memory: 256 MB

    描述

    祖玛是一款曾经风靡全球的游戏,其玩法是:在一条轨道上初始排列着若干个彩色珠子,其中任意三个相邻的珠子不会完全同色。此后,你可以发射珠子到轨道上并加入原有序列中。一旦有三个或更多同色的珠子变成相邻,它们就会立即消失。这类消除现象可能会连锁式发生,其间你将暂时不能发射珠子。

    开发商最近准备为玩家写一个游戏过程的回放工具。他们已经在游戏内完成了过程记录的功能,而回放功能的实现则委托你来完成。

    游戏过程的记录中,首先是轨道上初始的珠子序列,然后是玩家接下来所做的一系列操作。你的任务是,在各次操作之后及时计算出新的珠子序列。

    输入

    第一行是一个由大写字母'A'~'Z'组成的字符串,表示轨道上初始的珠子序列,不同的字母表示不同的颜色。

    第二行是一个数字n,表示整个回放过程共有n次操作。

    接下来的n行依次对应于各次操作。每次操作由一个数字k和一个大写字母Σ描述,以空格分隔。其中,Σ为新珠子的颜色。若插入前共有m颗珠子,则k ∈ [0, m]表示新珠子嵌入之后(尚未发生消除之前)在轨道上的位序。

    输出

    输出共n行,依次给出各次操作(及可能随即发生的消除现象)之后轨道上的珠子序列。

    如果轨道上已没有珠子,则以“-”表示。

    样例

    见英文题面

    限制

    0 ≤ n ≤ 10^4

    0 ≤ 初始珠子数量 ≤ 10^4

    时间:2 sec

    内存:256 MB

     1 #include<cstdio>
     2 #include<iostream>
     3 #include<cstring>
     4 #define N 100500
     5 using namespace std;
     6 
     7 char s[N];
     8 int len;
     9 
    10 void print()
    11 {
    12     if(!len)
    13     {
    14         printf("-\n");
    15         return;
    16     }
    17 
    18     for(int i=0;i<len;i++)
    19     printf("%c",s[i]);
    20     printf("\n");
    21 
    22 }
    23 
    24 void shoot(int pos,char k)
    25 {
    26     for(int i=len;i>pos;i--)s[i]=s[i-1];
    27     s[pos]=k;
    28     len++;
    29 
    30     //print();
    31     int l=pos,r=pos+1,sum=0;
    32     int ansl=l,ansr=r;
    33 
    34     while(l>=0&&s[l]==s[pos])l--,sum++;
    35     while(r<len&&s[r]==s[pos])r++,sum++;
    36     while(sum>=3)
    37     {
    38         ansl=l;
    39         ansr=r;
    40 
    41         pos=l;
    42         sum=0;
    43 
    44         while(l>=0&&s[l]==s[pos])l--,sum++;
    45         while(r<len&&s[r]==s[pos])r++,sum++;
    46     }
    47     l=ansl;
    48     r=ansr;
    49 
    50    // printf("%d %d\n",l,r);
    51     int cut=r-l-1;
    52     for(int i=l+1;i<=l+len-r;i++)s[i]=s[r+i-l-1];
    53     len-=cut;
    54     print();
    55 
    56 }
    57 
    58 
    59 int main()
    60 {
    61     int t;
    62     cin.getline(s,sizeof(s));
    63     scanf("%d",&t);
    64     //scanf("%s %d",s,&t);
    65     len=strlen(s);
    66 
    67     while(t--)
    68     {
    69         char ss[10];
    70         int pos;
    71         scanf("%d %s",&pos,ss);
    72         shoot(pos,ss[0]);
    73     }
    74     return 0;
    75 }
  • 相关阅读:
    (转).NET Compact Framework使用P/Invoke服务
    C#编码好习惯
    有些东西必须时刻放在心上!
    我是这样的人吗?是!!!!!!!!!
    经济学家张五常教大家四招读书的方法 (转)
    #在宏中的某些用法(转)
    牛人太强了,我该怎么努力呀?
    利用增强限制条件来求解问题
    努力呀!即将面临的deadline
    volume visualization reserach时刻记在心的要点
  • 原文地址:https://www.cnblogs.com/sylvia1111/p/15613010.html
Copyright © 2011-2022 走看看