热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

HDU3487PlaywithChain

题意:对序列取出连续的一段接到剩下的第k个值后面,或者把一段序列反转。解题思路:splay区间操作。解题代码:1FileName:hdu3487.cpp2Author:darkdr

题意:对序列取出连续的一段接到剩下的第k个值后面,或者把一段序列反转。

解题思路:splay 区间操作。

解题代码:

技术分享技术分享
  1 // File Name: hdu3487.cpp
  2 // Author: darkdream
  3 // Created Time: 2015年04月09日 星期四 10时16分12秒
  4 
  5 #include
  6 #include
  7 #include
  8 #include<set>
  9 #include
 10 #include
 11 #include
 12 #include
 13 #include
 14 #include
 15 #include
 16 #include
 17 #include
 18 #include
 19 #include
 20 #include
 21 #include
 22 #include
 23 #include
 24 #define LL long long
 25 #define maxn 310000
 26 using namespace std;
 27 
 28 char str[10];
 29 int ta,tb,tc;
 30 int n , m ; 
 31 int lastans[maxn];
 32 struct SplayTree{
 33     int sz[maxn];
 34     int ch[maxn][2];
 35     int pre[maxn];
 36     int root ,top1,top2;
 37     int ss[maxn],que[maxn];
 38     int rev[maxn];
 39     inline void Rotate(int x, int f){
 40         int y = pre[x];
 41         push_down(y);
 42         push_down(x);
 43         ch[y][!f] = ch[x][f];
 44         pre[ch[x][f]] = y ; 
 45         pre[x] = pre[y];
 46         if(pre[x]) ch[pre[y]][ch[pre[y]][1] == y]  = x; 
 47         ch[x][f] = y; 
 48         pre[y] = x; 
 49         push_up(y);
 50     }
 51     inline void Splay(int x, int goal){
 52         push_down(x);
 53         while(pre[x] != goal){
 54             if(pre[pre[x]] == goal){
 55                 Rotate(x,ch[pre[x]][0] == x);
 56             }else{
 57                 int y = pre[x],z = pre[y];
 58                 int f = (ch[z][0] == y);
 59                 if(ch[y][f] == y ){
 60                     Rotate(x,!f),Rotate(x,f);
 61                 }else{
 62                     Rotate(y,f),Rotate(x,f);
 63                 }
 64             }
 65         }
 66         push_up(x);
 67         if(goal == 0 ) root = x;
 68     }
 69     inline void RotateTo(int k ,int goal){
 70         int x = root ; 
 71         push_down(x);
 72         while(sz[ch[x][0]] != k ){
 73             if(k 0]]){
 74                 x = ch[x][0];
 75             }else{
 76                 k -= (sz[ch[x][0]] +1) ; 
 77                 x = ch[x][1];
 78             }
 79             push_down(x);
 80         }
 81         Splay(x,goal);
 82     }
 83     inline void NewNode(int &x ,int c){
 84          if(top2) x = ss[--top2];
 85          else x = ++ top1;
 86          ch[x][0] = ch[x][1] = pre[x] = 0 ; 
 87          sz[x] = 1; 
 88          
 89          val[x] = c ;
 90          rev[x] = 0 ;
 91 
 92     }
 93     inline void push_down(int x){
 94         if(rev[x])
 95         {
 96             swap(ch[x][0],ch[x][1]);
 97             rev[ch[x][0]] ^= 1; 
 98             rev[ch[x][1]] ^= 1; 
 99             rev[x] = 0 ; 
100         }
101     }
102     inline void push_up(int x){
103         sz[x] = 1 + sz[ch[x][0]] + sz[ch[x][1]];
104     }
105     inline void makeTree(int &x, int l ,int r ,int f){
106         if(l > r) return ;
107         int m = (l + r) >> 1; 
108         NewNode(x, m);
109         makeTree(ch[x][0] , l , m-1, x);
110         makeTree(ch[x][1] , m+1 , r, x);
111         pre[x] = f; 
112         push_up(x);
113     }
114     inline void init(int n){
115         rev[0] = ch[0][1] = ch[0][0] = pre[0] = sz[0] = 0 ;
116         root  = top1 =0 ; 
117         NewNode(root,-1);
118         NewNode(ch[root][1],-1);
119         pre[ch[root][1]] = root ;
120         sz[root] = 2; 
121     
122         makeTree(ch[ch[root][1]][0],1,n,ch[root][1]);
123         push_up(ch[root][1]);
124         push_up(root);
125     }
126     inline void cut(int l,int r, int si){
127     
128         RotateTo(l-1,0);
129         RotateTo(r+1,root);
130 
131         int del = ch[ch[root][1]][0];
132         ch[ch[root][1]][0] = 0 ; 
133         push_up(ch[root][1]);
134         push_up(root);
135         RotateTo(si,0);
136         RotateTo(si+1,root);
137         pre[del] = ch[root][1];
138         ch[ch[root][1]][0] = del ;
139         Splay(ch[ch[root][1]][0],0);
140         //push_up(ch[root][1]);
141         //push_up(root);
142     }
143     inline void flip(int l , int r )
144     {
145         RotateTo(l-1,0);
146         RotateTo(r+1,root);
147         rev[ch[ch[root][1]][0]] ^= 1; 
148         Splay(ch[ch[root][1]][0],0);
149     }
150     void print(int x,int k ){
151         if(x == 0 )
152             return;
153         push_down(x);
154         print(ch[x][0],k);
155         lastans[k+sz[ch[x][0]]] = val[x]; 
156         print(ch[x][1],k+1+sz[ch[x][0]]);
157     }
158     int val[maxn];
159 
160 }spt;
161 int main(){ 
162     while(scanf("%d %d",&n,&m) != EOF)
163     {
164        if(n == -1)
165            break;
166        spt.init(n);
167        for(int i = 1;i <= m;i ++)
168        {
169            scanf("%s",str);
170            if(str[0] == C)
171            {
172               scanf("%d %d %d",&ta,&tb,&tc);
173               spt.cut(ta,tb,tc);
174            }else{
175               scanf("%d %d",&ta,&tb);
176               spt.flip(ta,tb);
177            }
178        }
179        spt.print(spt.root,0);
180        for(int i = 1;i <= n; i ++)
181          printf(i == 1?"%d":" %d",lastans[i]);
182        printf("\n");
183     }
184 return 0;
185 }
View Code

HDU 3487 Play with Chain


推荐阅读
  • 题目概述:给定一个数组,计算其中所有连续子序列中平均值不低于给定值k的数量。通过将每个元素减去k并计算前缀和,问题转化为二维数点问题。此问题可以通过离线处理,利用树状数组来高效解决。 ... [详细]
  • 本文旨在介绍Three.js的基础概念及其应用场景。Three.js是一个基于WebGL的JavaScript库,用于在网页上创建和显示3D图形。文中将从Canvas的基本功能出发,探讨其局限性,并引出WebGL及Three.js的解决方案。 ... [详细]
  • 本文介绍了在 Android 开发中如何实现像素 (px)、缩放独立像素 (sp) 和密度独立像素 (dp) 之间的相互转换。这些方法对于确保应用在不同屏幕尺寸和分辨率上的适配至关重要。 ... [详细]
  • 本文介绍了一个简单的Python函数,该函数能够接收一个日期作为输入,并返回这一天是星期几。此功能通过使用Python的datetime模块实现。 ... [详细]
  • 学习目的:1.了解android线程的使用2.了解主线程与子线程区别3.解析异步处理机制主线程与子线程:所谓主线程,在Windows窗体应用程序中一般指UI线程,这个是程序启动的时 ... [详细]
  • 在现代多线程编程中,Lock接口提供的灵活性和控制力超越了传统的synchronized关键字。Lock接口不仅使锁成为一个独立的对象,还提供了更细粒度的锁定机制,例如读写锁(ReadWriteLock)。本文将探讨如何利用ReentrantReadWriteLock提高并发性能。 ... [详细]
  • 本文深入探讨了Java注解的基本概念及其在现代Java开发中的应用。文章不仅介绍了如何创建和使用自定义注解,还详细讲解了如何利用反射机制解析注解,以及Java内建注解的使用场景。 ... [详细]
  • 本文介绍了一种利用迭代法解决特定方程问题的方法,特别是当给定函数f(x)在区间[x1, x2]内连续且f(x1)0时,存在一个x~使得f(x~)=0。通过逐步细化搜索范围,可以高效地找到方程的根。 ... [详细]
  • 本文通过具体示例探讨了在 C++ 中使用 extern "C" 的重要性及其作用,特别是如何影响编译后的对象文件中的符号名称。 ... [详细]
  • 盐池元宵夜色
    盐池县的元宵之夜灯火辉煌,各式各样的灯笼装饰着小镇,营造出浓厚的节日气氛。九曲民俗文化园的新建成为了节日的一大亮点,不仅展示了丰富的传统文化,也为游客提供了独特的体验。 ... [详细]
  • 本文详细介绍了如何在VUE开发环境中正确安装和配置Nightwatch及Karma相关插件,并解决运行测试时遇到的Java版本不兼容问题。 ... [详细]
  • 本文详细探讨了在Windows Server 2003环境下遇到MySQL连接失败(错误代码10061)的解决方案,包括通过卸载特定的Windows更新和调整系统注册表设置的方法。 ... [详细]
  • 本文提供了中国三大主要通信运营商(中国联通、中国电信和中国移动)的官方邮箱服务网站链接,帮助用户快速访问并管理个人邮件,同时介绍了如何设置短信提醒功能。 ... [详细]
  • Linux环境下Memcached安装指南
    本文详细介绍如何在Linux虚拟机上安装Memcached,包括必要的依赖库安装,以及使用Xshell进行文件传输的具体步骤。 ... [详细]
  • 首先说一下,这是我在CSDN上的第一个文章,其实这个账号早在几年前就申请了,不过当时只是为了下载一个资源,而且也不怎么懂信息技术相关的领域,后来就再也没怎么动过,直到今天我才开始使用这个账号 ... [详细]
author-avatar
小阳
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有