Codeforces 138C Mushroom Gnomes - 2 线段树
感觉没啥东西, 用线段树算算每个被覆盖的概率, 坑点是有很多个在同一个点。
#include<bits/stdc++.h>
#define LL long long
#define fi first
#define se second
#define mk make_pair
#define PLL pair<LL, LL>
#define PLI pair<LL, int>
#define PII pair<int, int>
#define SZ(x) ((int)x.size())
#define ull unsigned long long using namespace std; const int N = 4e5 + ;
const int inf = 0x3f3f3f3f;
const LL INF = 0x3f3f3f3f3f3f3f3f;
const int mod = 1e9 + ;
const double eps = 1e-;
const double PI = acos(-); int A[N], h[N], b[N], X[N], n, m, tot;
double pl[N], pr[N], z[N], val[N]; #define lson l, mid, rt << 1
#define rson mid + 1, r, rt << 1 | 1
double a[N << ], lazy[N << ];
void push(int rt) {
if(fabs(lazy[rt] - ) > eps) {
a[rt << ] *= lazy[rt];
a[rt << | ] *= lazy[rt];
lazy[rt << ] *= lazy[rt];
lazy[rt << | ] *= lazy[rt];
lazy[rt] = ;
}
}
void build(int l, int r, int rt) {
lazy[rt] = ;
if(l == r) {
a[rt] = ;
return;
}
int mid = l + r >> ;
build(lson); build(rson);
}
void update(int L, int R, double val, int l, int r, int rt) {
if(L > R) return;
if(l >= L && r <= R) {
a[rt] *= val;
lazy[rt] *= val;
return;
}
int mid = l + r >> ;
push(rt);
if(L <= mid) update(L, R, val, lson);
if(R > mid) update(L, R, val, rson);
}
double query(int p, int l, int r, int rt) {
if(l == r) return a[rt];
int mid = l + r >> ;
push(rt);
if(p <= mid) return query(p, lson);
else return query(p, rson);
} int getId(int x) {
return lower_bound(X, X + tot, x) - X + ;
} int main() {
scanf("%d%d", &n, &m);
for(int i = ; i <= n; i++) {
scanf("%d%d", &A[i], &h[i]);
scanf("%lf%lf", &pl[i], &pr[i]);
pl[i] /= ; pr[i] /= ;
X[tot++] = A[i];
X[tot++] = A[i] + h[i];
X[tot++] = A[i] - h[i];
}
for(int i = ; i <= m; i++) {
scanf("%d%lf", &b[i], &z[i]);
X[tot++] = b[i];
}
sort(X, X + tot);
tot = unique(X, X + tot) - X;
build(, tot, );
for(int i = ; i <= m; i++) {
val[getId(b[i])] += z[i];
}
for(int i = ; i <= tot; i++) {
update(i, i, val[i], , tot, );
}
for(int i = ; i <= n; i++) {
update(getId(A[i]) + , getId(A[i] + h[i]), - pr[i], , tot, );
update(getId(A[i] - h[i]), getId(A[i]) - , - pl[i], , tot, );
}
double ans = ;
for(int i = ; i <= tot; i++) {
ans += query(i, , tot, );
}
printf("%.12f\n", ans);
return ;
} /*
*/
Codeforces 138C Mushroom Gnomes - 2 线段树的更多相关文章
- codeforces Good bye 2016 E 线段树维护dp区间合并
codeforces Good bye 2016 E 线段树维护dp区间合并 题目大意:给你一个字符串,范围为‘0’~'9',定义一个ugly的串,即串中的子串不能有2016,但是一定要有2017,问 ...
- codeforces 22E XOR on Segment 线段树
题目链接: http://codeforces.com/problemset/problem/242/E E. XOR on Segment time limit per test 4 seconds ...
- Codeforces 588E. A Simple Task (线段树+计数排序思想)
题目链接:http://codeforces.com/contest/558/problem/E 题意:有一串字符串,有两个操作:1操作是将l到r的字符串升序排序,0操作是降序排序. 题解:建立26棵 ...
- Codeforces Gym 100803G Flipping Parentheses 线段树+二分
Flipping Parentheses 题目连接: http://codeforces.com/gym/100803/attachments Description A string consist ...
- Codeforces GYM 100114 D. Selection 线段树维护DP
D. Selection Time Limit: 1 Sec Memory Limit: 256 MB 题目连接 http://codeforces.com/gym/100114 Descriptio ...
- Codeforces 444C DZY Loves Colors(线段树)
题目大意:Codeforces 444C DZY Loves Colors 题目大意:两种操作,1是改动区间上l到r上面德值为x,2是询问l到r区间总的改动值. 解题思路:线段树模板题. #inclu ...
- Codeforces 85D Sum of Medians(线段树)
题目链接:Codeforces 85D - Sum of Medians 题目大意:N个操作,add x:向集合中加入x:del x:删除集合中的x:sum:将集合排序后,将集合中全部下标i % 5 ...
- [Codeforces]817F. MEX Queries 离散化+线段树维护
[Codeforces]817F. MEX Queries You are given a set of integer numbers, initially it is empty. You sho ...
- CodeForces 516C Drazil and Park 线段树
原文链接http://www.cnblogs.com/zhouzhendong/p/8990745.html 题目传送门 - CodeForces 516C 题意 在一个环上,有$n$棵树. 给出每一 ...
随机推荐
- .NET面试题系列(十三)Lucene底层原理
索引原理 全文检索技术由来已久,绝大多数都基于倒排索引来做,曾经也有过一些其他方案如文件指纹.倒排索引,顾名思义,它相反于一篇文章包含了哪些词,它从词出发,记载了这个词在哪些文档中出现过,由两部分组成 ...
- 大量界面刷新时手动Dispose也是有必要的
在winform窗体上拖一个flowLayoutPane,一个Button,项目中再创建一个用户控件UcControl,用户控件上放几十个子控件 private void button1_Click( ...
- 集大软件工程15级个人作业Week2
集大软件工程15级个人作业Week2 快速通读教材<构建之法>,并参照提问模板,提出5个问题. 在每个问题后面,请说明哪一章节的什么内容引起了你的提问,提供一些上下文 列出一些事例或资料, ...
- Nginx PHP支持
Nginx 支持 PHP server { server_name www.www1.com www1.com; location / { index index.php index.html; ro ...
- luogu P1627 [CQOI2009]中位数
传送门 要求有多少个长度为奇数的区间满足某个数为区间中位数 这样的区间,大于中位数的数个数 等于 小于中位数的数个数 用类似于前缀和的方法,设\(X_i\)为\(i\)和数\(b\)形成的区间内,大于 ...
- Python的虚拟环境virtualenv
原文地址:blog.sina.com.cn/s/blog_4ddef8f80101eu0w.html Python的虚拟环境可以使一个Python程序拥有独立的库library和解释器interpre ...
- 闭包传递(floyed)
题目链接: https://cn.vjudge.net/contest/66569#problem/H 题目大意: n代表母牛的个数,m代表给定的信息的组数.每一组数包括a,b. 代表b崇拜a(突然发 ...
- HTTP协议-响应报文格式
HTTP协议-响应码 浏览器向服务器发出请求,服务器处理可能是成功.可能是失败.可能没有权限访问等原因,服务器会通过响应码来告诉浏览器处理结果. " : OK " : Found ...
- 【vue报错】——listen EADDRINUSE :::8080 解决方案
题原因: 此项错误表示 8080 端口被占用 解决方案一: 打开cmd输入:netstat -ano|findstr "8080"查看所有端口信息,并通过findstr “8080 ...
- 基于URL的权限管理(三)
思路:先创建一个专门的类ActiveUser用于存储用户登录的信息,主要用于存储用户id,账户,名称,菜单,权限. 认证拦截器主要是查看用户是否已登陆,如果没有转发到登陆界面,用户用账户跟密码登录时候 ...