結果

問題 No.1197 モンスターショー
ユーザー chocoruskchocorusk
提出日時 2020-08-22 16:09:47
言語 C++17
(gcc 13.2.0 + boost 1.83.0)
結果
AC  
実行時間 883 ms / 3,000 ms
コード長 4,618 bytes
コンパイル時間 1,796 ms
コンパイル使用メモリ 140,184 KB
実行使用メモリ 38,112 KB
最終ジャッジ日時 2023-08-05 21:30:43
合計ジャッジ時間 19,502 ms
ジャッジサーバーID
(参考情報)
judge11 / judge14
このコードへのチャレンジ(β)

テストケース

テストケース表示
入力 結果 実行時間
実行使用メモリ
testcase_00 AC 1 ms
4,376 KB
testcase_01 AC 2 ms
4,376 KB
testcase_02 AC 1 ms
4,376 KB
testcase_03 AC 1 ms
4,380 KB
testcase_04 AC 1 ms
4,380 KB
testcase_05 AC 1 ms
4,376 KB
testcase_06 AC 1 ms
4,376 KB
testcase_07 AC 138 ms
26,644 KB
testcase_08 AC 188 ms
18,456 KB
testcase_09 AC 440 ms
30,820 KB
testcase_10 AC 690 ms
29,820 KB
testcase_11 AC 317 ms
12,496 KB
testcase_12 AC 159 ms
8,080 KB
testcase_13 AC 230 ms
20,936 KB
testcase_14 AC 474 ms
21,164 KB
testcase_15 AC 305 ms
11,560 KB
testcase_16 AC 700 ms
35,464 KB
testcase_17 AC 685 ms
36,088 KB
testcase_18 AC 271 ms
14,288 KB
testcase_19 AC 629 ms
29,368 KB
testcase_20 AC 124 ms
11,972 KB
testcase_21 AC 227 ms
5,760 KB
testcase_22 AC 26 ms
5,740 KB
testcase_23 AC 598 ms
23,100 KB
testcase_24 AC 422 ms
22,776 KB
testcase_25 AC 221 ms
15,960 KB
testcase_26 AC 369 ms
16,928 KB
testcase_27 AC 512 ms
32,748 KB
testcase_28 AC 441 ms
18,776 KB
testcase_29 AC 302 ms
22,024 KB
testcase_30 AC 268 ms
25,240 KB
testcase_31 AC 273 ms
20,112 KB
testcase_32 AC 180 ms
4,656 KB
testcase_33 AC 178 ms
16,232 KB
testcase_34 AC 844 ms
37,720 KB
testcase_35 AC 840 ms
37,732 KB
testcase_36 AC 848 ms
37,920 KB
testcase_37 AC 833 ms
37,616 KB
testcase_38 AC 883 ms
38,112 KB
testcase_39 AC 830 ms
38,088 KB
testcase_40 AC 517 ms
35,276 KB
testcase_41 AC 1 ms
4,380 KB
testcase_42 AC 1 ms
4,376 KB
権限があれば一括ダウンロードができます

ソースコード

diff #

#include <cstdio>
#include <cstring>
#include <iostream>
#include <string>
#include <cmath>
#include <bitset>
#include <vector>
#include <map>
#include <set>
#include <queue>
#include <deque>
#include <algorithm>
#include <complex>
#include <unordered_map>
#include <unordered_set>
#include <random>
#include <cassert>
#include <fstream>
#include <utility>
#include <functional>
#include <time.h>
#include <stack>
#include <array>
#define popcount __builtin_popcount
using namespace std;
typedef long long int ll;
typedef pair<ll, ll> P;
struct LinkCutTree{
	struct Node{
		Node *l, *r, *p;
		bool rev;
		int idx, val, sz, szl;
		ll cost, sum, suml, costs, sum2;
		set<pair<int, int>> dat;
		Node(int val, int idx, ll cost):cost(cost), costs(cost), sum(0), sum2(0), suml(0), idx(idx), val(val), sz(val), szl(0), rev(false), l(nullptr), r(nullptr), p(nullptr){}
		bool is_root(){
			return !p || (p->l!=this && p->r!=this);
		}
	};
	vector<Node*> v;
	LinkCutTree(int n){
		v.resize(n);
		for(int i=0; i<n; i++) v[i]=new Node(0, i, 0);
	}
	void toggle(Node *t){
		if(!t) return;
		swap(t->sum, t->sum2);
		swap(t->l, t->r);
		t->rev^=true;
	}
	void push(Node *t){
		if(!t) return;
		if(t->rev){
			toggle(t->l);
			toggle(t->r);
			t->rev=false;
		}
	}
	void update(Node *t){
		t->sz=t->val+t->szl, t->costs=t->cost;
		if(t->l) t->sz+=t->l->sz, t->costs+=t->l->costs;
		if(t->r) t->sz+=t->r->sz, t->costs+=t->r->costs;
		t->sum=t->suml+t->cost*t->szl;
		t->sum2=t->suml+t->cost*t->szl;
		if(t->l) t->sum+=t->l->sum, t->sum2+=t->l->sum2, t->sum+=t->l->costs*(t->val+t->szl), t->sum2+=t->l->sz*t->cost;
		if(t->r) t->sum+=t->r->sum, t->sum2+=t->r->sum2, t->sum+=t->r->sz*t->cost, t->sum2+=t->r->costs*(t->val+t->szl);
		if(t->l && t->r) t->sum+=t->l->costs*t->r->sz, t->sum2+=t->r->costs*t->l->sz;
	}
	void rotate(Node *t){
		Node *p=t->p, *pp=p->p, *ch;
		if(p->l==t) ch=t->r;
		else ch=t->l;
		if(pp){
			if(pp->l==p) pp->l=t;
			else if(pp->r==p) pp->r=t;
			else{
				pp->dat.erase({p->sz, p->idx});
				pp->dat.insert({p->sz, t->idx});
			}
		}
		t->p=pp;
		if(p->l==t) t->r=p;
		else t->l=p;
		p->p=t;
		if(p->l==t) p->l=ch;
		else p->r=ch;
		if(ch) ch->p=p;
		update(p);
		update(t);
	}
	int state(Node *t){
		if(t->is_root()) return 0;
		else if(t->p->l==t) return 1;
		else return -1;
	}
	void splay(Node *t){
		push(t);
		while(state(t)){
			if(!state(t->p)){
				push(t->p); push(t);
				rotate(t);
			}else{
				push(t->p->p); push(t->p); push(t);
				if(state(t->p)==state(t)){
					rotate(t->p);
					rotate(t);
				}else{
					rotate(t);
					rotate(t);
				}
			}
		}
	}
	Node *expose(Node *t){
		Node *rp=nullptr;
		for(Node *now=t; now; now=now->p){
			splay(now);
			if(rp){
				now->dat.erase({rp->sz, rp->idx});
				now->szl-=rp->sz;
				now->suml-=rp->sum;
			}
			if(now->r){
				now->dat.insert({now->r->sz, now->r->idx});
				now->szl+=now->r->sz;
				now->suml+=now->r->sum;
			}
			now->r=rp;
			update(now);
			rp=now;
		}
		splay(t);
		return rp;
	}
	void link(Node *c, Node *p){
		expose(c);
		expose(p);
		p->r=c;
		c->p=p;
		update(p);
	}
	void cut(Node *c){
		expose(c);
		c->l->p=nullptr;
		c->l=nullptr;
		update(c);
	}
	void evert(Node *t){
		expose(t);
		toggle(t);
		push(t);
	}
	Node *find(Node *t){
		evert(t);
		int n=t->sz, m=(n+1)/2;
		if(n==0) return t;
		Node *now=t;
		while(1){
			push(now);
			if(now->r && now->r->sz>=m) now=now->r;
			else if((now->r?now->r->sz:0)+now->szl+now->val<m){
				m-=(now->r?now->r->sz:0)+now->szl+now->val;
				now=now->l;
			}else{
				if(now->dat.empty() || (*now->dat.rbegin()).first<=n/2) return now;
				else{
					m=(n+1)/2;
					now=v[(*now->dat.rbegin()).second];
				}
			}
		}
	}
};
int main()
{
	int n, k, q;
	scanf("%d %d %d", &n, &k, &q);
	LinkCutTree lct(n);
	using node=LinkCutTree::Node;
    int c[100010];
    for(int i=0; i<k; i++){
        scanf("%d", &c[i]);
        c[i]--;
        lct.v[c[i]]->val++;
    }
    for(int i=0; i<n-1; i++){
        int a, b;
        scanf("%d %d", &a, &b);
        a--; b--;
        node *e=new node(0, i+n, 1);
        lct.v.push_back(e);
		lct.link(e, lct.v[a]);
		lct.evert(e);
		lct.link(e, lct.v[b]);
    }
    while(q--){
        int t; scanf("%d", &t);
        if(t==1){
            int p, d;
            scanf("%d %d", &p, &d);
            p--; d--;
            lct.expose(lct.v[c[p]]);
            lct.v[c[p]]->val--;
            c[p]=d;
            lct.expose(lct.v[c[p]]);
            lct.v[c[p]]->val++;
        }else{
            int e; scanf("%d", &e);
            e--;
            lct.evert(lct.v[e]);
            printf("%lld\n", lct.v[e]->sum);
        }
    }
	return 0;
}

0