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$棵树. 给出每一 ...
随机推荐
- spring boot(十一):Spring boot中mongodb的使用
mongodb简介 传统的关系数据库一般由数据库(database).表(table).记录(record)三个层次概念组成, MongoDB是由数据库(database).集合(collection ...
- springboot(七)邮件服务
简单使用 发送邮件应该是网站的必备功能之一,什么注册验证,忘记密码或者是给用户发送营销信息.最早期的时候我们会使用JavaMail相关api来写发送邮件的相关代码,后来spring退出了JavaMai ...
- [译]Quartz.NET 框架 教程(中文版)2.2.x 之第七课 触发监听器和作业任务监听器
第七课:触发监听器和作业任务监听器 监听器是在调度器中基于事件机制执行操作的对象.你大概可以猜到,触发监听器接收响应跟触发器有关的事件,作业任务监听器接收响应跟作业任务有关的事件. 跟触发器有关的事件 ...
- 20155301 2016-2017-2 《Java程序设计》第7周学习总结
20155301 2016-2017-2 <Java程序设计>第7周学习总结 教材学习内容总结 1.例如 Compartor<String>byLength=new Compa ...
- android 生成、pull解析xml文件
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools= ...
- Nginx 日志处理
. nginx日志统计独立ip的个数: awk '{print $1}' /access.log | sort | uniq | wc -l . 查询访问最多的前10个ip awk . 查看某段时间的 ...
- 永久修改MySQL字符集(适用Mysql5.5、Mysql5.6、Mysql5.7以上)
在my.ini文件里添加三个参数: 1.在[client]下添加 default-character-set=utf8 2.在[mysqld]下添加 character-set-server=utf8 ...
- Kernel 3.0.8 内存管理函数【转】
转自:http://blog.csdn.net/myarrow/article/details/7208777 1. 内存分配函数 相关代码如下: #define alloc_pages(gfp_ma ...
- 如何用nodejs创建一个webservice
Posted on March 25th, 2012 under Express.js, Node.jsTags: Express.js, git, GitHub, node.js Looking f ...
- 【译】.NET Core 2.2 Preview 2 发布
原文出自.Net Blog Announcing .NET Core 2.2 Preview 2 今天,我们宣布推出.NET Core 2.2 Preview 2.我们有很多重要改进要和你分享,而且我 ...