字符串两头堵的模型就是去掉两边空格,已经字符串1,在字符串2出现的次数,不修改输入。

伸展树模版真的好长好长。。。

cut a b c:把第a-1个数伸展到根节点,把第b+1个数伸展到a的右子树,然后把ch[ch[root][1][0]]拿掉,放在剩下的树的第c个节点下。

flip a b:把第a-1个数伸展到根节点,把第b+1个数伸展到a的右子树,然后翻转ch[ch[root][1][0]];

由于会出现操作两边的情况,所以加了两个-1节点。

注意:

1,输出的时候要注意空格和换行。

2,在拿掉子树的时候要注意push_up();

#include<stdio.h>
#include<string.h>
#include<algorithm>
#include<iostream>
#include<vector>
using namespace std;
#define maxn 330000
#define mem(a,b) memset(a,b,sizeof(a))
#define root10 ch[ch[root][1]][0]
#define root1 ch[root][1]
int pre[maxn],ch[maxn][2],root,tot;
int size[maxn];
int rev[maxn];
int key[maxn];
int n;
void Treaval(int x) {
    if(x) {
        Treaval(ch[x][0]);
        printf("结点%2d:左儿子 %2d 右儿子 %2d 父结点 %2d size = %2d ,key = %2d \n",x,ch[x][0],ch[x][1],pre[x],size[x],key[x]);
        Treaval(ch[x][1]);
    }
}
void debug() {printf("%d\n",root);Treaval(root);}
//以上Debug
void init()
{
    root=tot=0;
    mem(pre,0);
    mem(ch,0);
    mem(size,0);
    mem(rev,0);
}
void newnode(int &x,int k,int father)
{
    x=++tot;
    pre[x]=father;
    size[x]=1;
    ch[x][0]=ch[x][1]=0;
    rev[x]=0;
    key[x]=k;
}
void push_down(int x)
{
    if(rev[x])
    {
        rev[x]=0;
        rev[ch[x][0]]^=1;
        rev[ch[x][1]]^=1;
        swap(ch[x][0],ch[x][1]);
    }
}
void push_up(int x)
{
    size[x]=size[ch[x][0]]+size[ch[x][1]]+1;
}
void rot(int x,int kind)
{
    int y=pre[x];
    push_down(y);
    push_down(x);
    ch[y][!kind]=ch[x][kind];
    pre[ch[x][kind]]=y;
    if(pre[y])ch[pre[y]][ch[pre[y]][1]==y]=x;
    pre[x]=pre[y];
    ch[x][kind]=y;
    pre[y]=x;
    push_up(y);
    push_up(x);
}
void splay(int x,int goal)
{
    push_down(x);
    while(pre[x]!=goal)
    {
        if(pre[pre[x]]==goal)
        {
            push_down(pre[x]);
            push_down(x);
            rot(x,ch[pre[x]][0]==x);
        }
        else
        {
            int y=pre[x];
            push_down(pre[y]);
            push_down(y);
            push_down(x);
            int kind=ch[pre[y]][0]==y;
            if(ch[y][kind]==x)
            {
                rot(x,!kind);
                rot(x,kind);
            }
            else
            {
                rot(y,kind);
                rot(x,kind);
            }
        }
    }
    push_up(x);
    if(goal==0)root=x;
}
void buildtree(int &x,int l,int r,int father)
{
    if(l>r)return ;
    int mid=(l+r)/2;
    newnode(x,mid,father);
    buildtree(ch[x][0],l,mid-1,x);
    buildtree(ch[x][1],mid+1,r,x);
    push_up(x);
}
int get_kth(int x,int k)
{
    push_down(x);
    int p=size[ch[x][0]];
    if(p+1==k)return x;
    else if(k<=p)return get_kth(ch[x][0],k);
    else get_kth(ch[x][1],k-p-1);
}
int get_min(int r){
    push_down(r);
    while(ch[r][0]){
        r=ch[r][0];
        push_down(r);
    }
    return r;
}
int get_max(int r){
    push_down(r);
    while(ch[r][1]){
        r=ch[r][1];
        push_down(r);
    }
    return r;
}
void cut(int a,int b,int c)
{
    int x=get_kth(root,a);
    int y=get_kth(root,b+2);
    splay(x,0);
    splay(y,root);
    int t=root10;
    root10=0;
    push_up(root1);
    push_up(root);
    int z=get_kth(root,c+1);
    splay(z,0);
    int p=get_min(root1);
    splay(p,root);
    root10=t;
    pre[root10]=root1;
    push_up(root1);
    push_up(root);
}
void flip(int a,int b)
{
    int x=get_kth(root,a);
    int y=get_kth(root,b+2);
    splay(x,0);
    splay(y,root);
    rev[root10]^=1;
}
vector<int>vec;
void print(int x)
{
    if(x==0)return;
    push_down(x);
    print(ch[x][0]);
    if(key[x]!=-1)vec.push_back(key[x]);
    print(ch[x][1]);
}
int main()
{
    int m,a,b,c;
    char str[110];
    int i;
    while(scanf("%d%d",&n,&m)&&(n+1||m+1))
    {
        init();
        newnode(root,-1,0);
        newnode(ch[root][1],-1,root);
        size[root]=2;
        buildtree(root10,1,n,root1);
        push_up(root1);
        push_up(root);
        for(i=1;i<=m;i++)
        {
            scanf("%s",str);
            if(str[0]==‘C‘)
            {
                scanf("%d%d%d",&a,&b,&c);
                cut(a,b,c);
            }
            else
            {
                scanf("%d%d",&a,&b);
                flip(a,b);
            }
        }
        vec.clear();
        print(root);
        for(i=0;i<vec.size();i++)
        {
            cout<<vec[i];
            if(i!=vec.size()-1)cout<<" ";
            else cout<<endl;
        }
    }
    return 0;
}

字符串两头堵的模型就是去掉两边空格,已经字符串1,在字符串2出现的次数,不修改输入。,码迷,mamicode.com

时间: 2024-11-06 03:28:57

字符串两头堵的模型就是去掉两边空格,已经字符串1,在字符串2出现的次数,不修改输入。的相关文章

字符串--两头堵模型解析

题目: 有一个字符串开头或结尾含有n个空格("   abcdefgdddd    "),欲去掉前后空格,返回一个新字符串. 1 // 字符串两头堵模型 2 int TrimSpaceStr(char *p, char *buf) 3 { 4 int rv = 0; 5 char *str = p; 6 int i = 0; // 搜索指针变量,从字符串头部开始 7 int j = strlen(str) - 1;// 搜索指针变量,从字符串尾部开始 8 int len = 0; //

java去掉所有空格,以逗号截取字符串成数组,再进行遍历

遍历分割后的数组 //去掉所有空格,以逗号截取字符串成数组 List<String> phoneNoList=new ArrayList<String>();String[] phoneNos = phonesGroupVO.getPhoneNos().replace(" ", "").split(","); //1.用增强的for循环遍历 for(String str:phoneNos){ if(!phoneNoList

C语言 字符串操作两头堵模型

//字符串操作两头堵模型练习 #define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> #include<string.h> //去除字符串中的空格 //const char *pin的解释:const char *pin是用来限制指针pin指向的数据是个常量,不允许在常量中修改, //但是并不限制实参指针指向的数据也必须是一个常量 //这是为了防止传过来的参数pin所指向的数据不可以修改,

js实现trim() JS去掉首尾空格 JS去掉两头空格

function trimStr(str){return str.replace(/(^\s*)|(\s*$)/g,"");} 用的时候就是直接 var 变量=trimStr(需要去空格的字符串); js实现trim() JS去掉首尾空格 JS去掉两头空格,码迷,mamicode.com

获取html字符串中第一张图片的路径以及获取html字符串中的文字内容(去掉标签)

/** * 获取html字符串中第一张图片的路径 * @param htmlcontent * @return */ public static String getImgFromHtml(String htmlcontent){ if(htmlcontent!=null){ String regEx_img = "<img.*src\\s*=\\s*(.*?)[^>]*?>"; Pattern p_image = Pattern.compile(regEx_img,

javascript消除字符串两边空格的两种方式,面向对象和函数式编程

主要是javascript中消除字符串空格,比较两种方式的不同 //面向对象,消除字符串两边空格 String.prototype.trim = function() { return this.replace(/(^\s*)|(\s*$)/g, ""); }; //去左右空格的函数; function trim(s){ return s.replace(/(^\s*)|(\s*$)/g, ""); }调用消除空格的两种方式. var defualtPhone =

Objective-C语法之字符串NSString去掉前后空格或回车符(可以是NSCharacterSet类型的其它字符)

main.m 1 #import <Foundation/Foundation.h> 2 #import "NSString+Trim.h" 3 int main(int argc, const char * argv[]) { 4 @autoreleasepool { 5 NSString *strSource = @" Kenmu 我是啊武 "; 6 NSLog(@"“%@”去掉前后空格后为“%@”", strSource, [N

oc 字符串 如何去掉前后空格、回车键

if ([title hasPrefix:@" "]) { title = [title stringByTrimmingCharactersInSet:[NSCharacterSet whitespaceCharacterSet]];//去掉前后空格 }else if([title hasPrefix:@"\n"]){ title = [title stringByTrimmingCharactersInSet:[NSCharacterSet newlineCha

用JS去掉前后空格或中间空格大全

1.  去掉字符串前后所有空格: -- js实现trim功能 //去除字符串前后所有空 function Trim(str) { return str.replace(/(^\s*)|(\s*$)/g, ""); }//在字符串原型上添加方法也可String.prototype.Trim = function(){ return this.replace(/(^\s*)|(\s*$)/g, "");} //去除字符串前面空格String.prototype.LTri