bzoj4889
http://www.lydsy.com/JudgeOnline/problem.php?id=4889
人傻常数大 bzoj上跑不过 洛谷上能过两到三个点
我写的是树套树啊 怎么跑的比分块还慢
每次可以发现交换两个点 只对他们中间的点有影响 所以我们只用计算比x小的数的和 比x大的数的和 比y小的数的和 比y大的数的和 然后计算一下就可以了 很明显可以用各种数据结构维护
#include<bits/stdc++.h>
using namespace std;
typedef long long ll;
const int N = ;
const ll mod = ;
int n, m, cnt;
ll ans;
int q[N];
inline int read()
{
int x = , f = ; char c = getchar();
while(c < '' || c > '')
{
if(c == '-') f = -;
c = getchar();
}
while(c >= '' && c <= '')
{
x = x * + c - '';
c = getchar();
}
return x * f;
}
struct BIT {
ll tree[N], count[N];
int lowbit(int i)
{
return i & (-i);
}
void update(int pos, ll delta)
{
for(int i = pos; i <= ; i += lowbit(i))
{
tree[i] = (tree[i] + delta) % mod;
++count[i];
}
}
ll query(int pos, ll delta)
{
ll ret1 = , ret2 = ;
for(int i = pos; i; i -= lowbit(i))
{
ret1 = (ret1 + tree[i]) % mod;
ret2 += count[i];
}
ret1 = (ret1 + ret2 * delta) % mod;
return ret1;
}
} B;
struct data {
int a;
ll v;
} tree[N], a[N];
namespace splaytree
{
int fa[N], child[N][], root[N];
ll size[N], num[N], sum[N];
void update(int x)
{
size[x] = num[x] + size[child[x][]] + size[child[x][]];
sum[x] = (tree[x].v * num[x] + sum[child[x][]] + sum[child[x][]]) % mod;
}
void zig(int x)
{
int y = fa[x];
fa[x] = fa[y];
child[fa[x]][child[fa[x]][] == y] = x;
child[y][] = child[x][];
fa[child[x][]] = y;
fa[y] = x;
child[x][] = y;
update(y);
update(x);
}
void zag(int x)
{
int y = fa[x];
fa[x] = fa[y];
child[fa[x]][child[fa[x]][] == y] = x;
child[y][] = child[x][];
fa[child[x][]] = y;
fa[y] = x;
child[x][] = y;
update(y);
update(x);
}
void splay(int x, int t, int pos)
{
while(fa[x] != t)
{
int y = fa[x], z = fa[y];
if(z == t)
{
child[y][] == x ? zig(x) : zag(x);
break;
}
else if(y == child[z][] && x == child[y][]) { zig(y); zig(x); }
else if(y == child[z][] && x == child[y][]) { zag(y); zag(x); }
else if(y == child[z][] && x == child[y][]) { zag(x); zig(x); }
else if(y == child[z][] && x == child[y][]) { zig(x); zag(x); }
}
if(!t) root[pos] = x;
update(root[pos]);
}
void up(int x)
{
while(x)
{
update(x);
x = fa[x];
}
}
ll getbig(int pos, data &k)
{
int now = root[pos];
ll ret = ;
while(now)
{
if(tree[now].a > k.a)
{
ret = (ret + k.v + tree[now].v) % mod;
ret = (ret + k.v * size[child[now][]] +
sum[child[now][]]) % mod;
now = child[now][];
}
else now = child[now][];
}
return ret;
}
ll getsmall(int pos, data &k)
{
int now = root[pos];
ll ret = ;
while(now)
{
if(tree[now].a < k.a)
{
ret = (ret + k.v + tree[now].v) % mod;
ret = (ret + k.v * size[child[now][]] +
sum[child[now][]]) % mod;
now = child[now][];
}
else now = child[now][];
}
return ret;
}
int find(int x, data &k)
{
for(x = root[x]; x; x = child[x][k.a > tree[x].a])
if(tree[x].a == k.a) return x;
}
void del(int pos, int x)
{
splay(x, , pos);
if(num[x] > )
{
--num[x];
update(x);
return;
}
if(child[x][] * child[x][] == )
{
root[pos] = child[x][] + child[x][];
fa[root[pos]] = ;
child[x][] = child[x][] = fa[x] = ;
return;
}
int now = child[x][];
while(child[now][]) now = child[now][];
fa[child[x][]] = now;
child[now][] = child[x][];
root[pos] = child[x][];
fa[root[pos]] = ;
up(child[x][]);
child[x][] = child[x][] = num[x] = size[x]
= fa[x] = ;
splay(now, , pos);
}
void insert(int pos, data &k)
{
int now = root[pos];
if(!root[pos])
{
root[pos] = ++cnt;
tree[cnt] = k;
size[cnt] = num[cnt] = ;
sum[cnt] = k.v;
return;
}
while()
{
if(tree[now].a == k.a)
{
++num[now];
up(now);
break;
}
if(!child[now][k.a > tree[now].a])
{
child[now][k.a > tree[now].a] = ++cnt;
tree[cnt] = k;
size[cnt] = num[cnt] = ;
fa[cnt] = now;
sum[cnt] = k.v;
up(cnt);
splay(cnt, , pos);
break;
}
now = child[now][k.a > tree[now].a];
}
}
} using namespace splaytree;
namespace segmenttree
{
void update(int l, int r, int x, int pos, data &k)
{
if(l == r)
{
root[x] = ++cnt;
tree[cnt] = k;
num[cnt] = size[cnt] = ;
sum[cnt] = k.v;
return;
}
int mid = (l + r) >> ;
if(pos <= mid) update(l, mid, x << , pos, k);
else update(mid + , r, x << | , pos, k);
int t = find(x, a[pos]);
del(x, t); insert(x, k);
}
void build(int l, int r, int x)
{
if(l == r)
{
root[x] = ++cnt;
num[cnt] = size[cnt] = ;
tree[cnt] = a[l];
sum[cnt] = a[l].v;
return;
}
int mid = (l + r) >> ;
build(l, mid, x << );
build(mid + , r, x << | );
for(int i = l; i <= r; ++i) insert(x, a[i]);
}
ll querybig(int l, int r, int x, int a, int b, data &k)
{
if(l > b || r < a) return ;
if(l >= a && r <= b) return getbig(x, k) % mod;
int mid = (l + r) >> ;
return ((querybig(l, mid, x << , a, b, k) +
querybig(mid + , r, x << | , a, b, k)) % mod);
}
ll querysmall(int l, int r, int x, int a, int b, data &k)
{
if(l > b || r < a) return ;
if(l >= a && r <= b) return getsmall(x, k) % mod;
int mid = (l + r) >> ;
return ((querysmall(l, mid, x << , a, b, k) +
querysmall(mid + , r, x << | , a, b, k)) % mod);
}
} using namespace segmenttree;
int main()
{
n = read(); m = read();
for(int i = ; i <= n; ++i)
{
a[i].a = read(); a[i].v = read();
ans = ((ans + B.query(, a[i].v) - B.query(a[i].a, a[i].v)) % mod + mod) % mod;
B.update(a[i].a, a[i].v);
}
build(, n, );
while(m--)
{
int x, y; x = read(); y = read();
if(x > y) swap(x, y);
if(x == y)
{
printf("%lld\n", ans);
continue;
}
if(a[x].a < a[y].a) ans += a[x].v + a[y].v;
else ans -= a[x].v + a[y].v;
ll a1 = querybig(, n, , x + , y - , a[x]);
ll a2 = querysmall(, n, , x + , y - , a[x]);
ll a3 = querysmall(, n, , x + , y - , a[y]);
ll a4 = querybig(, n, , x + , y - , a[y]);
ans = ((ans + a1 - a2 + a3 - a4) % mod + mod) % mod;
update(, n, , x, a[y]);
update(, n, , y, a[x]);
swap(a[x], a[y]);
printf("%lld\n", ans);
}
return ;
}
bzoj4889的更多相关文章
- 【BZOJ4889】不勤劳的图书管理员(树套树)
[BZOJ4889]不勤劳的图书管理员(树套树) 题面 又是权限题,烦死了 洛谷真好 题解 分开考虑每一次交换产生的贡献. 假设交换\((x,y)\) 检查\(x\)与\(y\)对于区间\([x+1, ...
- 【bzoj4889】: [Tjoi2017]不勤劳的图书管理员 分块-BIT
[bzoj4889]: [Tjoi2017]不勤劳的图书管理员 题目大意:给定一个序列(n<=50000),每个数有一个编码ai(ai<=50000)和权值vi(vi<=100000 ...
- 【BZOJ4889】[Tjoi2017]不勤劳的图书管理员 分块+树状数组
[BZOJ4889][Tjoi2017]不勤劳的图书管理员 题目描述 加里敦大学有个帝国图书馆,小豆是图书馆阅览室的一个书籍管理员.他的任务是把书排成有序的,所以无序的书让他产生厌烦,两本乱序的书会让 ...
- BZOJ4889 & 洛谷3759:[TJOI2017]不勤劳的图书管理员——题解
https://www.lydsy.com/JudgeOnline/problem.php?id=4889 https://www.luogu.org/problemnew/show/P3759 加里 ...
- [bzoj4889] [Tjoi2017]不勤劳的图书管理员
Description 加里敦大学有个帝国图书馆,小豆是图书馆阅览室的一个书籍管理员.他的任务是把书排成有序的,所以无序的书让他产生厌烦,两本乱序的书会让小豆产生这两本书页数的和的厌烦度.现在有n本被 ...
- [TJOI2017][bzoj4889] 不勤劳的图书管理员 [线段树套线段树]
题面 传送门 思路 考虑两本书的位置交换对答案的贡献: (为了方便描述,用"左边那本"和"右边那本"称呼两本我们要交换的书,"中间那本"是我 ...
- BZOJ4889:[TJOI2017]不勤劳的图书管理员
浅谈树状数组与线段树:https://www.cnblogs.com/AKMer/p/9946944.html 题目传送门:https://www.lydsy.com/JudgeOnline/prob ...
- bzoj4889: [Tjoi2017]不勤劳的图书管理员(树套树)
传送门 据说正解线段树套平衡树 然而网上参考(抄)了一个树状数组套动态开点线段树的 思路比较清楚,看代码应该就明白了 //minamoto #include<iostream> #incl ...
- 【bzoj4889】[Tjoi2017]不勤劳的图书管理员 树状数组+分块+二分
题目描述(转自洛谷) 加里敦大学有个帝国图书馆,小豆是图书馆阅览室的一个书籍管理员.他的任务是把书排成有序的,所以无序的书让他产生厌烦,两本乱序的书会让小豆产生这两本书页数的和的厌烦度.现在有n本被打 ...
随机推荐
- css--小白入门篇1
一.引入 css用来描述html,学习css前我们先来学习html的基础标签的用法,再进入css的学习. 本教程面向小白对象,不会讲细枝末节深入的东西. 二.列表 列表有3种 2.1 无序列表 无序列 ...
- [Python数据结构] 使用List实现Stack
[Python数据结构] 使用List实现Stack 1. Stack 堆栈(Stack)又称为栈或堆叠,是计算机科学中一种特殊的串列形式的抽象数据类型(ADT),其特殊之处在于只能允许在阵列的一端进 ...
- linux环境下时间的查看和修改
查看日期和时间date 查看时区date -R 查看UTC时间date -u 修改日期[root@centos ~]# date -s 20181230Sun Dec 30 00:00:00 EST ...
- CentOS7安装Nginx及其相关
一.安装所需环境 gcc 安装 安装 nginx 需要先将官网下载的源码进行编译,编译依赖 gcc 环境,如果没有 gcc 环境,则需要安装. yum install gcc-c++ PCRE pcr ...
- python3.x Day1 菜单程序练习
三级菜单: 1. 运行程序输出第一级菜单 2. 选择一级菜单某项,输出二级菜单,同理输出三级菜单 3. 菜单数据保存在文件中 4. 让用户选择是否要退出 5. 有返回上一级菜单的功能 类定义:menu ...
- 55.fielddata内存控制以及circuit breaker断路器
课程大纲 fielddata加载 fielddata内存限制 监控fielddata内存使用 circuit breaker 一.fielddata加载 fielddata加载到内存的过程是lazy加 ...
- jdk版本特性
https://segmentfault.com/a/1190000004419611 java5 泛型 枚举 装箱拆箱 变长参数 注解 foreach循环 静态导入 格式化 线程框架/数据结构 Ar ...
- 【07】AngularJS Filters
AngularJS Filters 过滤器可以使用一个管道字符(|)添加到表达式和指令中. AngularJS 过滤器 AngularJS 过滤器可用于转换数据: 过滤器 描述 currency[ˈk ...
- Linux & Filesystem Hierarchy Standard
Linux & Filesystem Hierarchy Standard The Filesystem Hierarchy Standard of Linux https://zhuanla ...
- mcp2515 芯片驱动总线错误BUG的解决方法
http://blog.renren.com/share/221002615/11483613167 来自张涛的日志 现象:CAN总线在线上设备热插拔或长时间运行后出现总线异常情况,有时不能发送和接收 ...