結果

問題 No.399 動的な領主
ユーザー pekempeypekempey
提出日時 2016-07-15 23:46:28
言語 C++11
(gcc 11.4.0)
結果
AC  
実行時間 329 ms / 2,000 ms
コード長 3,389 bytes
コンパイル時間 1,852 ms
コンパイル使用メモリ 162,412 KB
実行使用メモリ 23,808 KB
最終ジャッジ日時 2024-04-25 08:45:01
合計ジャッジ時間 5,133 ms
ジャッジサーバーID
(参考情報)
judge2 / judge3
このコードへのチャレンジ
(要ログイン)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 2 ms
5,888 KB
testcase_01 AC 3 ms
5,760 KB
testcase_02 AC 2 ms
6,016 KB
testcase_03 AC 3 ms
6,016 KB
testcase_04 AC 4 ms
5,760 KB
testcase_05 AC 24 ms
6,912 KB
testcase_06 AC 323 ms
16,128 KB
testcase_07 AC 329 ms
16,128 KB
testcase_08 AC 317 ms
16,256 KB
testcase_09 AC 315 ms
16,128 KB
testcase_10 AC 5 ms
5,888 KB
testcase_11 AC 17 ms
6,912 KB
testcase_12 AC 206 ms
16,640 KB
testcase_13 AC 196 ms
16,512 KB
testcase_14 AC 73 ms
23,808 KB
testcase_15 AC 171 ms
23,808 KB
testcase_16 AC 183 ms
19,712 KB
testcase_17 AC 310 ms
16,128 KB
testcase_18 AC 320 ms
16,256 KB
権限があれば一括ダウンロードができます
コンパイルメッセージ
main.cpp: In function ‘int main()’:
main.cpp:162:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  162 |                 scanf("%d %d", &u, &v);
      |                 ~~~~~^~~~~~~~~~~~~~~~~
main.cpp:176:22: warning: ignoring return value of ‘int scanf(const char*, ...)’ declared with attribute ‘warn_unused_result’ [-Wunused-result]
  176 |                 scanf("%d %d", &u, &v);
      |                 ~~~~~^~~~~~~~~~~~~~~~~

ソースコード

diff #

#include <bits/stdc++.h>
using namespace std;

//**************************************************************
//	link-cut tree
//**************************************************************
struct node {
	node *parent = nullptr;
	node *lch = nullptr;
	node *rch = nullptr;
	bool reversed = false;

	int size = 1;

	long long sum = 1;
	long long val = 1;
	long long lazy = 0;
};

int size(node *x) {
	if (x == nullptr) return 0;
	return x->size;
}

long long sum(node *x) {
	if (x == nullptr) return 0;
	return x->sum + x->lazy * size(x);
}

void update(node *x) {
	if (x == nullptr) return;
	x->size = 1 + size(x->lch) + size(x->rch);
	x->sum = x->val + sum(x->lch) + sum(x->rch);
}

void push(node *x) {
	if (x == nullptr) return;
	for (node *y : { x->lch, x->rch }) if (y != nullptr) {
		y->reversed ^= x->reversed;
		y->lazy += x->lazy;
	}
	if (x->reversed) swap(x->lch, x->rch);
	x->reversed = false;
	x->val += x->lazy;
	x->lazy = 0;

	update(x);
}

//**************************************************************
//	link-cut tree basic operation
//**************************************************************
enum { LEFT, RIGHT };

bool is_root(node *x) {
	return x->parent == nullptr || (x->parent->lch != x && x->parent->rch != x);
}

int parent_direction(node *x) {
	if (is_root(x)) return -1;
	return x->parent->rch == x ? LEFT : RIGHT;
}

void connect(node *child, node *parent, int dir) {
	if (parent != nullptr && dir != -1) (dir == RIGHT ? parent->lch : parent->rch) = child;
	if (child != nullptr) child->parent = parent;
}

void raise(node *x) {
	node *y = x->parent;
	node *z = y->parent;
	int xdir = parent_direction(x);
	int ydir = parent_direction(y);
	connect(xdir == LEFT ? x->lch : x->rch, y, xdir);
	connect(y, x, !xdir);
	connect(x, z, ydir);
	update(y);
	update(x);
	update(z);
}

void splay(node *x) {
	while (!is_root(x)) {
		push(x->parent->parent);
		push(x->parent);
		push(x);
		if (is_root(x->parent)) {
			raise(x);
		} else if (parent_direction(x) == parent_direction(x->parent)) {
			raise(x->parent);
			raise(x);
		} else {
			raise(x);
			raise(x);
		}
	}
	push(x);
}

void expose(node *x) {
	for (node *y = x, *rch = nullptr; y != nullptr; y = y->parent) {
		splay(y);
		y->rch = rch;
		rch = y;
		update(y);
	}
	splay(x);
}

void cut(node *x) {
	expose(x);
	x->lch->parent = nullptr;
	x->lch = nullptr;
	update(x);
}

void link(node *x, node *p) {
	expose(x);
	expose(p);
	x->parent = p;
	p->rch = x;
	update(x);
	update(p);
}

void evert(node *x) {
	expose(x);
	x->rch = x->lch;
	x->lch = nullptr;
	if (x->rch != nullptr) x->rch->reversed ^= 1;
	update(x);
}

template<class F>
void ignore_rch(node *x, F f) {
	node *rch = x->rch;
	x->rch = nullptr;
	update(x);
	f();
	x->rch = rch;
	update(x);
}

node *tr[101010];
vector<int> g[101010];

void dfs(int curr, int prev) {
	for (int next : g[curr]) if (next != prev) {
		link(tr[next], tr[curr]);
		dfs(next, curr);
	}
}

int main() {
	int n;
	cin >> n;

	for (int i = 0; i < n; i++) tr[i] = new node();
	
	for (int i = 0; i < n - 1; i++) {
		int u, v;
		scanf("%d %d", &u, &v);
		u--;
		v--;
		g[u].push_back(v);
		g[v].push_back(u);
	}
	dfs(0, -1);

	long long ans = 0;

	int Q;
	cin >> Q;
	while (Q--) {
		int u, v;
		scanf("%d %d", &u, &v);
		u--;
		v--;

		evert(tr[u]);
		expose(tr[v]);
		ignore_rch(tr[v], [&]() {
			ans += sum(tr[v]);
		});
		tr[v]->lazy++;
	}
	cout << ans << endl;
}
0