[BZOJ4530] [BJOI 2014] 대융합.
8888 단어 【OJ】BZOJ[유형] 문제풀이 기록
【코드】
#include
using namespace std;
const int MAXN = 100005;
template <typename T> void chkmax(T &x, T y) {x = max(x, y); }
template <typename T> void chkmin(T &x, T y) {x = min(x, y); }
template <typename T> void read(T &x) {
x = 0; int f = 1;
char c = getchar();
for (; !isdigit(c); c = getchar()) if (c == '-') f = -f;
for (; isdigit(c); c = getchar()) x = x * 10 + c - '0';
x *= f;
}
template <typename T> void write(T x) {
if (x < 0) x = -x, putchar('-');
if (x > 9) write(x / 10);
putchar(x % 10 + '0');
}
template <typename T> void writeln(T x) {
write(x);
puts("");
}
struct LinkCutTree {
struct Node {
int child[2];
int father, up;
int size, light;
bool rev;
} a[MAXN];
int size, n;
void init(int x) {
n = x;
for (int i = 1; i <= n; i++)
a[i].size = 1;
}
void update(int root) {
a[root].size = a[root].light + 1;
if (a[root].child[0]) a[root].size += a[a[root].child[0]].size;
if (a[root].child[1]) a[root].size += a[a[root].child[1]].size;
}
void pushdown(int root) {
if (a[root].rev) {
swap(a[root].child[0], a[root].child[1]);
if (a[root].child[0]) a[a[root].child[0]].rev ^= true;
if (a[root].child[1]) a[a[root].child[1]].rev ^= true;
a[root].rev = false;
}
}
bool get(int x) {
return a[a[x].father].child[1] == x;
}
void rotate(int x) {
int f = a[x].father, g = a[f].father;
a[x].up = a[f].up, a[f].up = 0;
pushdown(f), pushdown(x);
bool tmp = get(x);
a[f].child[tmp] = a[x].child[tmp ^ 1];
if (a[f].child[tmp]) a[a[f].child[tmp]].father = f;
a[f].father = x;
a[x].child[tmp ^ 1] = f;
a[x].father = g;
if (g) a[g].child[a[g].child[1] == f] = x;
update(f), update(x);
}
void splay(int x) {
pushdown(x);
for (int f = a[x].father; (f = a[x].father) != 0; rotate(x))
if (a[f].father) {
if (get(x) == get(f)) rotate(f);
else rotate(x);
}
}
void access(int x) {
splay(x);
int tmp = a[x].child[1];
if (tmp != 0) {
a[tmp].up = x;
a[tmp].father = 0;
a[x].child[1] = 0;
a[x].light += a[tmp].size;
update(x);
}
while (a[x].up) {
int f = a[x].up;
splay(f);
tmp = a[f].child[1];
if (tmp != 0) {
a[tmp].up = f;
a[tmp].father = 0;
a[f].light += a[tmp].size;
}
a[f].child[1] = x;
a[f].light -= a[x].size;
a[x].father = f;
a[x].up = 0;
update(f);
splay(x);
}
}
void link(int x, int y) {
access(x);
splay(x);
reverse(y);
access(y);
splay(y);
a[x].child[1] = y;
a[y].father = x;
update(x);
}
void reverse(int x) {
access(x);
splay(x);
a[x].rev ^= true;
}
long long query(int x, int y) {
reverse(x);
access(y);
splay(x);
int tmp = a[x].size;
int tnp = a[y].size;
return 1ll * (tmp - tnp) * tnp;
}
} LCT;
int main() {
int n, m;
read(n), read(m);
LCT.init(n);
for (int i = 1; i <= m; i++) {
char opt = getchar();
while (opt != 'A' && opt != 'Q') opt = getchar();
int x, y; read(x), read(y);
if (opt == 'A') LCT.link(x, y);
else writeln(LCT.query(x, y));
}
return 0;
}
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[BZOJ 3676] [APIO 2014] 댓 글 꼬치.[제목 링크] 클릭 하여 링크 열기 [아이디어 포인트] 리 턴 트 리 템 플 릿 문제. 시간 복잡 도 【 코드 】...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.