• THU 数据结构 祖玛(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

    这是一道 list 题目,但是清华OJ不能使用 STL,一开始用老是超时,后来借鉴一位大佬用的strcpy, 通过了,觉得非常妙。

    ac代码:

    #include <cmath>
    #include <cstdio>
    #include <cstring>
    using namespace std;
    #define MAX_N 20005
    
    char ch;
    char s[MAX_N],temp[MAX_N];
    int lens=0,N,pois;
    
    int qui(int a){
        int head=a,tail=a;
        char e=s[a];
    
        while(s[head]==e&&head)    head--;
        if(head||s[head]!=e)    head++;
        while(s[tail]==e&&tail<lens)    tail++;
        
        if(tail-head>=3){
            strcpy(temp,s+tail);
            strcpy(s+head,temp);
            lens=lens+head-tail;
            pois=head;
            return 1;
        }
        else    return 0;
    }
    
    int main(void){    
    
        char c;
        while((ch=getchar())!='
    '){
            s[lens++]=ch;
        }
        s[lens]='';
    
        scanf("%d",&N);
        for(int i=0;i<N;i++){
            scanf("%d %c",&pois,&c);
            strcpy(temp,s+pois);
            strcpy(s+pois+1,temp);
            s[pois]=c;
            lens++;
            while(qui(pois)&&lens);
            if(lens)    puts(s);
            else        puts("-");
        }
    
        return 0;
    }
    

      

  • 相关阅读:
    Django通用视图执行过程
    Django HTTP处理流程(自我总结)
    CentOS 安装MySQL5.7
    Python--定时给Ta讲笑话
    【转】对Django框架架构和Request/Response处理流程的分析
    Python模块发布
    Django中使用CKEditor代码高亮显示插件Code Snippet
    页面中的"返回顶部"(位置固定,指定位置显示/隐藏) Label:博客园美化
    跨域请求配置 Amazon AWS S3 腾讯云 阿里云 COS OSS 文件桶解决方案以及推荐 Label:Research
    文件分发服务器 AWS CloudFront(CDN)使用入门-以S3为例 Label:Research
  • 原文地址:https://www.cnblogs.com/jaszzz/p/12599379.html
Copyright © 2020-2023  润新知