题意:初始时给出一个图,每个点有一个权值,三种操作:(1)删除某个边;(2)修改每个点的权值;(3)询问与节点x在一个连通分量中所有点的第K大的权值。

析:首先是要先离线,然后再倒着做,第一个操作就成了加边操作,很容易实现,第二操作,就是分成两个操作,先把x结点删掉,然后再插入一个新结点,

最后一个是就是求某个连通分量的第 k 大,直接用treap直接查找就好,注意问是第 k 大,不是第 k 小。

代码如下:

#pragma comment(linker, "/STACK:1024000000,1024000000")
#include <cstdio>
#include <string>
#include <cstdlib>
#include <cmath>
#include <iostream>
#include <cstring>
#include <set>
#include <queue>
#include <algorithm>
#include <vector>
#include <map>
#include <cctype>
#include <cmath>
#include <stack>
#include <sstream>
#define debug() puts("++++");
#define gcd(a, b) __gcd(a, b)
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define freopenr freopen("in.txt", "r", stdin)
#define freopenw freopen("out.txt", "w", stdout)
using namespace std; typedef long long LL;
typedef unsigned long long ULL;
typedef pair<int, int> P;
const int INF = 0x3f3f3f3f;
const LL LNF = 1e16;
const double inf = 0x3f3f3f3f3f3f;
const double PI = acos(-1.0);
const double eps = 1e-8;
const int maxn = 5e5 + 10;
const int mod = 1e9 + 7;
const int dr[] = {-1, 0, 1, 0};
const int dc[] = {0, 1, 0, -1};
const char *de[] = {"0000", "0001", "0010", "0011", "0100", "0101", "0110", "0111", "1000", "1001", "1010", "1011", "1100", "1101", "1110", "1111"};
int n, m;
const int mon[] = {0, 31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
const int monn[] = {0, 31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
inline bool is_in(int r, int c){
return r >= 0 && r < n && c >= 0 && c < m;
} int w[maxn], a[maxn], b[maxn];
bool removed[maxn];
LL cnt, tot; struct Command{
char type;
int x, p;
};
Command com[maxn];
int p[maxn];
int Find(int x){ return x == p[x] ? x : p[x] = Find(p[x]); } struct Node{
Node *ch[2];
int r, v, s;
Node(int v) : v(v){ ch[0] = ch[1] = nullptr; r = rand(); s = 1; }
bool operator < (const Node &p) const{
return r < p.r;
}
int cmp(int x) const{
if(x == v) return -1;
return x < v ? 0 : 1;
}
void maintain(){
s = 1;
if(ch[0] != nullptr) s += ch[0]->s;
if(ch[1] != nullptr) s += ch[1]->s;
}
}; void Rotate(Node* &o, int d){
Node *k = o->ch[d^1]; o->ch[d^1] = k->ch[d]; k->ch[d] = o;
o->maintain(); k->maintain(); o = k;
} void Insert(Node* &o, int x){
if(o == nullptr) o = new Node(x);
else{
int d = (x < o->v ? 0 : 1);
Insert(o->ch[d], x);
if(o->ch[d]->r > o->r) Rotate(o, d^1);
}
o->maintain();
} void Remove(Node* &o, int x){
int d = o->cmp(x);
if(d == -1){
Node* u = o;
if(o->ch[0] != nullptr && o->ch[1] != nullptr){
int d2 = (o->ch[0]->r > o->ch[1]->r ? 1 : 0);
Rotate(o, d2); Remove(o->ch[d2], x);
}
else{
if(o->ch[0] == nullptr) o = o->ch[1];
else o = o->ch[0];
delete u;
}
}
else Remove(o->ch[d], x);
if(o != nullptr) o->maintain();
}
Node* root[maxn]; void removeTree(Node* &o){
if(o->ch[0] != nullptr) removeTree(o->ch[0]);
if(o->ch[1] != nullptr) removeTree(o->ch[1]);
delete o;
o = nullptr;
} void Merge(Node* &src, Node* &des){
if(src->ch[0] != nullptr) Merge(src->ch[0], des);
if(src->ch[1] != nullptr) Merge(src->ch[1], des);
Insert(des, src->v);
delete src;
src = nullptr;
} void add(int i){
int x = Find(a[i]);
int y = Find(b[i]);
if(x != y){
if(root[x]->s > root[y]->s){ p[y] = x; Merge(root[y], root[x]); }
else{ p[x] = y; Merge(root[x], root[y]); }
}
} int kTh(Node* &o, int k){
if(o == nullptr || k <= 0 || k > o->s) return 0;
int s = (o->ch[1] == nullptr ? 0 : o->ch[1]->s);
if(s + 1 == k) return o->v;
if(k <= s) return kTh(o->ch[1], k);
return kTh(o->ch[0], k - s - 1);
} void change(int i, int v){
int x = Find(i);
Remove(root[x], w[i]);
Insert(root[x], v);
w[i] = v;
} void query(int x, int k){
++cnt; x = Find(x);
tot += kTh(root[x], k);
} int main(){
srand(233333);
int kase = 0;
while(scanf("%d %d", &n, &m) == 2 && m+n){
for(int i = 1; i <= n; ++i) scanf("%d", w+i);
for(int i = 1; i <= m; ++i) scanf("%d %d", a+i, b+i);
memset(removed, 0, sizeof removed); int c = 0;
while(1){
int x, p = 0, v = 0;
char type;
scanf(" %c", &type);
if(type == 'E') break;
scanf("%d", &x);
if(type == 'D') removed[x] = 1;
else if(type == 'Q') scanf("%d", &p);
else {
scanf("%d", &v);
p = w[x]; w[x] = v;
}
com[c++] = (Command){type, x, p};
}
for(int i = 1; i <= n; ++i){
p[i] = i;
root[i] = new Node(w[i]);
}
for(int i = 1; i <= m; ++i) if(!removed[i]) add(i); cnt = tot = 0;
for(int i = c-1; i >= 0; --i){
if(com[i].type == 'D') add(com[i].x);
else if(com[i].type == 'C') change(com[i].x, com[i].p);
else query(com[i].x, com[i].p);
}
printf("Case %d: %f\n", ++kase, cnt == 0 ? 0 : (double)tot / cnt);
for(int i = 1; i <= n; ++i) if(root[i] != nullptr) removeTree(root[i]);
}
return 0;
}

  

UVaLive 5031 Graph and Queries (Treap)的更多相关文章

  1. uvalive 5031 Graph and Queries 名次树+Treap

    题意:给你个点m条边的无向图,每个节点都有一个整数权值.你的任务是执行一系列操作.操作分为3种... 思路:本题一点要逆向来做,正向每次如果删边,复杂度太高.逆向到一定顺序的时候添加一条边更容易.详见 ...

  2. UVALive 5031 Graph and Queries (Treap)

    删除边的操作不容易实现,那么就先离线然后逆序来做. 逆序就变成了合并,用并存集判断连通,用Treap树来维护一个连通分量里的名次. Treap = Tree + Heap.用一个随机的优先级来平衡搜索 ...

  3. UVALive - 5031 Graph and Queries (并查集+平衡树/线段树)

    给定一个图,支持三种操作: 1.删除一条边 2.查询与x结点相连的第k大的结点 3.修改x结点的权值 解法:离线倒序操作,平衡树or线段树维护连通块中的所有结点信息,加个合并操作就行了. 感觉线段树要 ...

  4. LA 5031 Graph and Queries —— Treap名次树

    离线做法,逆序执行操作,那么原本的删除边的操作变为加入边的操作,用名次树维护每一个连通分量的名次,加边操作即是连通分量合并操作,每次将结点数小的子树向结点数大的子树合并,那么单次合并复杂度O(n1lo ...

  5. HDU 3726 Graph and Queries treap树

    题目来源:HDU 3726 Graph and Queries 题意:见白书 思路:刚学treap 參考白皮书 #include <cstdio> #include <cstring ...

  6. UVALive5031 Graph and Queries(Treap)

    反向操作,先求出最终状态,再反向操作. 然后就是Treap 的合并,求第K大值. #include<cstdio> #include<iostream> #include< ...

  7. LA - 5031 - Graph and Queries

    题意:一个N个点(编号从1开始),M条边的无向图(编号从1开始),有3种操作: D X:把编号为X的边删了: Q X K:查询编号为X的结点所在连通分量第K大的元素: C X V:将编号为X的结点的权 ...

  8. [la P5031&hdu P3726] Graph and Queries

    [la P5031&hdu P3726] Graph and Queries Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: ...

  9. HDU 3726 Graph and Queries 平衡树+前向星+并查集+离线操作+逆向思维 数据结构大综合题

    Graph and Queries Time Limit: 10000/5000 MS (Java/Others)    Memory Limit: 32768/32768 K (Java/Other ...

随机推荐

  1. Nginx Rewrite语法详解

    重写中用到的指令 if  (条件) {}  设定条件,再进行重写 set #设置变量 return #返回状态码  return 403; break #跳出rewrite rewrite #重写 I ...

  2. 7zip压缩程序的使用

    1.压缩: zip格式: 7zip.exe a -tzip C:\压缩解压测试\TEST.zip C:\压缩解压测试\TEST\* 7z格式: 7zip.exe a -t7z C:\压缩解压测试\TE ...

  3. 启动Hadoop时DFSZKFailoverController没有启动

    在启动Hadoop成功后,并没有报错信息,jps查看进程,发现DFSZKFailoverController没有启动成功,后来发现是因为防火墙的原因,关掉重试就OK了 systemctl stop f ...

  4. 投影矩阵、最小二乘法和SVD分解

    投影矩阵广泛地应用在数学相关学科的各种证明中,但是由于其概念比较抽象,所以比较难理解.这篇文章主要从最小二乘法的推导导出投影矩阵,并且应用SVD分解,写出常用的几种投影矩阵的形式. 问题的提出 已知有 ...

  5. jQuery 开发一个简易插件

    jQuery 开发一个简易插件 //主要内容 $.changeCss = function(options){ var defaults = { color:'blue', ele:'text', f ...

  6. Jquery实现超酷的时间轴特效

    Timeline时间轴Jquery特效是一款现在互联网上非常流行的一种布局结构,结合了瀑布流布局,最近很多网友问到这种特效,网站上有网友们分享过一款,功能虽然实现,但样式不太好看,今天就把它整理出来分 ...

  7. css 动画的例子

    1. [代码]   <!DOCTYPE HTML><html><head><meta charset="utf-8"><tit ...

  8. java后端书单

    Java开发工程师一般负责后端开发,当然也有专门做Java Web的工程师,但是随着前后端的分离,越来越多的Java工程师需要往大后端方向发展. 今天我们就来介绍一下Java后端开发者的书单. 首先要 ...

  9. js 定义hash类

    // JavaScript Documentfunction HashTable(){    this._hash={};    this._count=0;            /**    *添 ...

  10. Android数据传递的五种方法汇总

    Android开发中,在不同模块(如Activity)间经常会有各种各样的数据需要相互传递,我把常用的几种 方法都收集到了一起.它们各有利弊,有各自的应用场景. 我现在把它们集中到一个例子中展示,在例 ...