博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
SGU 271 水题。。。。
阅读量:5098 次
发布时间:2019-06-13

本文共 3633 字,大约阅读时间需要 12 分钟。

手贱,输出的时候没pushdown。。。。。

就是简单的区间翻转。。

期末来了,总是淡淡的忧伤,没办法,只能找水题做了

 

#include 
#include
#include
#include
#include
#include
#include
using namespace std;typedef long long lld;#define L x->c[0]#define R x->c[1]#define KT root->c[1]->c[0]const int maxn = 111111;struct node { struct node *c[2], *fa; int id; int sz; bool flip; char name[5]; inline bool d() { return fa->c[0] == this; } inline void setc(int d, node *s) { c[d] = s; s->fa = this; } inline void up() { sz = c[0]->sz + c[1]->sz + 1; } inline void down() { if(flip) { c[0]->flip ^= 1; c[1]->flip ^= 1; swap(c[0],c[1]); flip = false; } } inline void clear(node *null) { c[0] = c[1] = null; sz = 1; }} NODE[2 * maxn], *null = &NODE[0] ;int top;node* ID[maxn];struct SplayTree { node* root; void Rotate(node *x,int f) { node *y = x->fa; y->down(); x->down(); y->setc(!f,x->c[f]); x->fa = y->fa; if (y->fa != null) y->fa->setc(!y->d(),x); x->setc(f,y); y->up(); } void Splay(node *x, node *goal) { x->down(); while (x->fa != goal) { x->fa->fa->down(); x->fa->down(); x->down(); if (x->fa->fa == goal) Rotate(x, x->d()); else { int f = x->fa->d(); x->d() == f ? Rotate(x->fa, f) : Rotate(x, !f); Rotate(x, f); } } x->up(); if (goal == null) root = x; } void RTO(int k, node *goal) { node *x = root; x->down(); while (L->sz + 1 != k) { if(k < L->sz + 1) x = L; else { k -= L->sz + 1; x = R; } x->down(); } Splay(x, goal); } void build(node* &x,int l,int r,node *fa) { if(l > r) return ; int m = (l + r) >>1; x = new_node(fa,num[m]); build(x->c[0],l,m-1,x); build(x->c[1],m+1,r,x); x->up(); } node *new_node(node *fa,char *s) { node *x = &NODE[++top]; x->id = top; x->c[0] = x->c[1] = null; x->sz = 1; x->flip = false; strcpy(x->name,s); x->fa = fa; return x; } void ADD(char *s) { RTO(1,null); RTO(2,root); node *tmp = new_node(root->c[1],s); root->c[1]->setc(0,tmp); root->c[1]->up(); root->up();// // debug();// puts("");// print(root);// puts(""); } void ROTATE(int K) { if(root->sz-2 <= K) { RTO(1,null); RTO(root->sz,root); KT->flip ^= 1; } else { RTO(1,null); RTO(K+2,root); KT->flip ^= 1; } } void print(node *x) { if(x != null) { x->down(); print(x->c[0]); if(strcmp(x->name,"***")!=0) printf("%s\n",x->name); print(x->c[1]); } } void init(int n) { for(int i = 0; i < n; i++) scanf("%s",num[i]); root = new_node(null,"***"); root->c[1] = new_node(root,"***"); build(KT,0,n-1,root->c[1]); root->c[1]->up(); root->up(); // debug(); }/*0 5 3ADD(ABD)ADD(XXX)ADD(FDA)ROTATEADD(wuyi) */ void Del_root() { // delete the root node* t = root; if (t->c[1] != null) { root = t->c[1]; RTO(1, null); root->c[0] = t->c[0]; if (root->c[0] != null) root->c[0]->fa = root; } else root = root->c[0]; root->fa = null; if (root != null) root->up(); } void vist(node *x) { if (x != null) { printf("节点:%2d : 左儿子: %2d 右儿子: %2d sz: %2d val: %s\n", x->id,x->c[0]->id,x->c[1]->id,x->sz,x->name); vist(x->c[0]); vist(x->c[1]); } } void debug() { puts("************"); vist(root); puts("\n*****************"); } char num[maxn][5];} spt;void prepare() { top = 0; null->id = 0; null->c[0] = null->c[1] = null->fa = NULL; null->sz = 0; null->flip = false; strcpy(null->name,"***");}int main() { prepare(); int n , m ,k; scanf("%d%d%d",&n,&m,&k); spt.init(n); char op[20]; for(int i = 0; i < m; i++) { scanf("%s",op); if(strcmp(op,"ROTATE") == 0) { spt.ROTATE(k); } else { int len = strlen(op); char ta[10]; int head = 0; for(int i = 4; i < len-1; i++) { ta[head++] = op[i]; } ta[head] = 0; spt.ADD(ta); } } spt.print(spt.root); return 0;}

 

 

转载于:https://www.cnblogs.com/dyllove98/archive/2013/06/08/3127465.html

你可能感兴趣的文章
BeautifulSoup的安装和使用
查看>>
阅读之线程连接池
查看>>
三状态玻璃效果导航的源代码
查看>>
清北学堂Day3
查看>>
高并发吹牛经验
查看>>
初探html-9 链接
查看>>
BZOJ1507 [NOI2003]Editor
查看>>
EF搭建数据库
查看>>
【并发】使用synchronized获取互斥锁的几点说明
查看>>
JS阻止事件冒泡的3种方法之间的不同
查看>>
cocos2dx CCSprite CCLayer 游戏基础
查看>>
Codeforces 348
查看>>
第40节:Java中的IO知识案例
查看>>
PHP全栈学习笔记16
查看>>
计算最长单词链
查看>>
IOS 自定义Operation(下载功能)
查看>>
存储管理
查看>>
OSC的原理
查看>>
数据库范式
查看>>
VC6.0调试技巧(一)(转)
查看>>