Gravatar
233ahah
积分:85
提交:45 / 133
求大佬看一下为什么这个代码过不去这道题,W了三个点啊!!!

#include<iostream>
#include<cstring>
#include<cstdio>
#include<cstring>
using namespace std;
struct node
{
int data,rev,sum;
node *son[2],*pre;
bool judge();
bool isroot();
void pushdown();
void update();
void setson(node *child,int lr);
}lct[233];
int top,a,b;
node *getnew(int x)
{
node *now=lct+ ++top;
now->data=x;
now->pre=now->son[1]=now->son[0]=lct;
now->sum=0;
now->rev=0;
return now;
}
bool node::judge(){return pre->son[1]==this;}
bool node::isroot()
{
if(pre==lct)return true;
return !(pre->son[1]==this||pre->son[0]==this);
}
void node::pushdown()
{
if(this==lct||!rev)return;
swap(son[0],son[1]);
son[0]->rev^=1;
son[1]->rev^=1;
rev=0;
}
void node::update(){sum=son[1]->sum+son[0]->sum+data;}
void node::setson(node *child,int lr)
{
this->pushdown();
child->pre=this;
son[lr]=child;
this->update();
}
void rotate(node *now)
{
node *father=now->pre,*grandfa=father->pre;
if(!father->isroot()) grandfa->pushdown();
father->pushdown();now->pushdown();
int lr=now->judge();
father->setson(now->son[lr^1],lr);
if(father->isroot()) now->pre=grandfa;
else grandfa->setson(now,father->judge());
now->setson(father,lr^1);
father->update();now->update();
if(grandfa!=lct) grandfa->update();
}
void splay(node *now)
{
if(now->isroot())return;
for(;!now->isroot();rotate(now))
if(!now->pre->isroot())
now->judge()==now->pre->judge()?rotate(now->pre):rotate(now);
}
node *access(node *now)
{
node *last=lct;
for(;now!=lct;last=now,now=now->pre)
{
splay(now);
now->setson(last,1);
}
return last;
}
void changeroot(node *now)
{
access(now)->rev^=1;
splay(now);
}
void connect(node *x,node *y)
{
changeroot(x);
x->pre=y;
access(x);
}
void cut(node *x,node *y)
{
changeroot(x);
access(y);
splay(x);
x->pushdown();
x->son[1]=y->pre=lct;
x->update();
}
int query(node *x,node *y)
{
changeroot(x);
node *now=access(y);
return now->sum;
}
int main()
{
freopen("aplusb.in","r",stdin);
freopen("aplusb.out","w",stdout);
scanf("%d%d",&a,&b);
node *A=getnew(a);
node *B=getnew(b);
//连边 Link
connect(A,B);
//断边 Cut
cut(A,B);
//再连边 Again
connect(A,B);
printf("%d\n",query(A,B));
return 0;
}

题目 1 加法问题
2017-10-26 19:38:45
Gravatar
ユッキー
积分:566
提交:198 / 587
第一次榜上留名~~~

Gravatar
bilibili
积分:149
提交:64 / 223
stl是个好东西

题目 75 [NOIP 2004]合并果子
2017-10-26 18:20:31
Gravatar
하루Kiev
积分:1158
提交:294 / 700

Gravatar
Hzoi_Mafia
积分:1559
提交:331 / 773
对着数据扩展我的词典= =
这tm与打表何异= =

Gravatar
Tanya
积分:265
提交:84 / 224
各种W。
误以为一定要移走m块。

题目 2107 [NOIP 2015]跳石头
2017-10-26 14:52:06
Gravatar
Shirry
积分:2254
提交:554 / 1107
数据范围水……并没有写单调队列qwq

Gravatar
JustWB
积分:617
提交:222 / 519
以前写过的题.........

Gravatar
rvalue
积分:720
提交:213 / 573
$$O(n^2\log(u))$$

题目 1743 忠诚
2017-10-26 07:37:05
Gravatar
据说这是zzy
积分:267
提交:104 / 466
本题需要的知识
欧几里得
百度百科
扩展欧几里得
http://blog.csdn.net/zhjchengfeng5/article/details/7786595
裴蜀定理
百度百科
还有你还需要个 chh
给你讲讲
谢 大哥

Gravatar
Fisher.
积分:939
提交:301 / 521

Gravatar
Shirry
积分:2254
提交:554 / 1107
暴搜+迷之剪枝

Gravatar
据说这是zzy
积分:267
提交:104 / 466
5
2 3 4 1 2
不用谢

Gravatar
CSU_Turkey
积分:1723
提交:614 / 1589
打表找规律
摸了30 qwq

Gravatar
Anonymity
积分:1206
提交:260 / 532
星级诈骗.png..第一次"矩阵上的"DP...

Gravatar
JustWB
积分:617
提交:222 / 519

题目 510 分班 AAAAAAAAAA
2017-10-25 20:17:58
Gravatar
Shirry
积分:2254
提交:554 / 1107
教训就是:没事不要瞎取模!

Gravatar
yymxw
积分:1112
提交:259 / 571

题目 812 单词默写 AAAAATTTTT
2017-10-25 19:46:43
Gravatar
CSU_Turkey
积分:1723
提交:614 / 1589
和斗地主一个感觉,自己辛辛苦苦写了半天,好几百行,又w又t
回头一看题解,原来这么短就能搞定!

Gravatar
JustWB
积分:617
提交:222 / 519
数据贼水