UVA10869 - Brownie Points II(线段树)
UVA10869 - Brownie Points II(线段树)
题目大意:平面上有n个点,Stan和Ollie在玩游戏,游戏规则是:Stan先画一条竖直的线作为y轴,条件是必需要经过这个平面上的某一点,而ollie则画x轴,可是要在Stany画的y轴上经过的点中随意选择一点来作为原点画x轴。然后这个平面就被划分为4个象限,轴上的点都不算,1,3象限的点的个数就是Stan的得分,2,4就是ollie的得分。问Stan每画一条y轴,每条轴上都有个得分的最小值,求这些最小值中的最大值,而且输出这时ollie的得分。
解题思路:将y轴离散化建树,希望每次枚举一个点就能够得到这个点的Stan的得分。从左往右,从上往下处理每一个点,通过线段树能够得到y高度上的点的个数,就是第一象限的得分。然后每次查询完一个点就要将这个点在线段树中删掉。同理得到第三象限的得分。这题还要输出ollie的得分,而且要按顺序,用set来存储。
代码:
#include <cstdio>
#include <cstring>
#include <vector>
#include <map>
#include <set>
#include <algorithm>
#include <iostream>
using namespace std;
const int maxn = 2e5;
#define lson(x) (x<<1)
#define rson(x) ((x<<1) | 1)
int n;
vector<int> pos;
map<int, int>x, y;
set<int> score, vec;
struct Point {
int x, y, score;
}p[maxn];
int cmp_x (const Point &a, const Point &b) {
if (a.x == b.x)
return a.y > b.y;
return a.x < b.x;
}
struct Node {
int l, r, v, addv;
void set (int l, int r, int addv, int v) {
this->l = l;
this->r = r;
this->v = v;
this->addv = addv;
}
}node[4 * maxn + 5];
void add_node (int u, int addv) {
node[u].addv += addv;
node[u].v += (node[u].r - node[u].l + 1) * addv;
}
void pushdown (int u) {
if (node[u].addv) {
add_node(lson(u), node[u].addv);
add_node(rson(u), node[u].addv);
}
}
void pushup (int u) {
node[u].set (node[lson(u)].l, node[rson(u)].r, 0, node[lson(u)].v + node[rson(u)].v);
}
void build (int u, int l, int r) {
if (l == r) {
node[u].set (l, r, 0, y[pos[l]]);
return ;
}
int m = (l + r)>>1;
build (lson(u), l, m);
build (rson(u), m + 1, r);
pushup(u);
}
void update (int u, int l, int r, int add) {
if (node[u].l >= l && node[u].r <= r) {
add_node(u, add);
return;
}
pushdown(u);
int m = (node[u].l + node[u].r)>>1;
if (l <= m)
update (lson(u), l, r, add);
if (r > m)
update (rson(u), l, r, add);
pushup(u);
}
int query (int u, int l, int r) {
if (node[u].l >= l && node[u].r <= r)
return node[u].v;
pushdown(u);
int m = (node[u].l + node[u].r)>>1;
int ans = 0;
if (l <= m)
ans += query(lson(u), l, r);
if (r > m)
ans += query(rson(u), l, r);
pushup(u);
return ans;
}
void init () {
x.clear();
y.clear();
pos.clear();
for (int i = 0; i < n; i++) {
scanf ("%d%d", &p[i].x, &p[i].y);
p[i].score = 0;
x[p[i].x]++;
y[p[i].y]++;
pos.push_back(p[i].y);
}
sort (pos.begin(), pos.end());
sort (p, p + n, cmp_x);
pos.erase(unique (pos.begin(), pos.end()), pos.end());
}
void solve_rtop () {
int x;
build(1, 0, (int)pos.size() - 1);
for (int i = 0; i < n; i++) {
x = lower_bound(pos.begin(), pos.end(), p[i].y) - pos.begin();
if (x + 1 <= pos.size() - 1) {
p[i].score += query(1, x + 1, pos.size() - 1);
//printf ("%d %d %d\n", p[i].x, p[i].y, x);
}
update (1, x, x, -1);
}
}
void solve_lboutom () {
int x;
build(1, 0, (int)pos.size() - 1);
for (int i = n - 1; i >= 0; i--) {
x = lower_bound(pos.begin(), pos.end(), p[i].y) - pos.begin();
if (x - 1 >= 0) {
p[i].score += query (1, 0, x - 1);
//printf ("%d %d %d\n", p[i].x, p[i].y, p[i].score);
}
update (1, x, x, -1);
}
}
void add_ans (int tmp) {
for (set<int>::iterator it = vec.begin(); it != vec.end(); it++)
score.insert(n - tmp - x[p[*it].x] - y[p[*it].y] + 1);
}
void solve () {
init();
solve_lboutom();
solve_rtop();
score.clear();
vec.clear();
int ans = -1;
int tmp = p[0].score;
int pre = p[0].x;
for (int i = 0; i < n; i++) {
if (pre == p[i].x) {
if (tmp == p[i].score)
vec.insert(i);
else if (tmp > p[i].score) {
vec.clear();
vec.insert(i);
tmp = p[i].score;
}
} else {
if (ans <= tmp) {
if (ans < tmp)
score.clear();
add_ans(tmp);
}
ans = max (ans, tmp);
tmp = p[i].score;
pre = p[i].x;
vec.clear();
vec.insert(i);
}
}
if (ans <= tmp) {
if (ans < tmp)
score.clear();
add_ans(tmp);
}
ans = max (ans, tmp);
printf("Stan: %d; Ollie:", ans);
for (set<int>::iterator it = score.begin(); it != score.end(); it++)
printf(" %d", *it);
printf(";\n");
}
int main () {
while (scanf ("%d", &n) && n) {
solve();
}
return 0;
}
UVA10869 - Brownie Points II(线段树)的更多相关文章
- HDOJ-1156 Brownie Points II 线段树/树状数组(模板)
http://acm.hdu.edu.cn/showproblem.php?pid=1156 在一张二位坐标系中,给定n个点的坐标,玩一个划线游戏(线必须穿过点),Stan先手画一条垂直的线,然后Ol ...
- POJ 2464 Brownie Points II(树状数组)
一开始还以为对于每根竖线,只要与过了任意一点的横线相交都可以呢,这样枚举两条线就要O(n^2),结果发现自己想多了... 其实是每个点画根竖线和横线就好,对于相同竖线统计(一直不包含线上点)右上左下总 ...
- POJ 2464 Brownie Points II (树状数组,难题)
题意:在平面直角坐标系中给你N个点,stan和ollie玩一个游戏,首先stan在竖直方向上画一条直线,该直线必须要过其中的某个点,然后ollie在水平方向上画一条直线,该直线的要求是要经过一个sta ...
- POJ - 2464 Brownie Points II 【树状数组 + 离散化】【好题】
题目链接 http://poj.org/problem?id=2464 题意 在一个二维坐标系上 给出一些点 Stan 先画一条过一点的水平线 Odd 再画一条 过Stan那条水平线上的任一点的垂直线 ...
- UVA 10869 - Brownie Points II(树阵)
UVA 10869 - Brownie Points II 题目链接 题意:平面上n个点,两个人,第一个人先选一条经过点的垂直x轴的线.然后还有一个人在这条线上穿过的点选一点作垂直该直线的线,然后划分 ...
- hdu 1156 && poj 2464 Brownie Points II (BIT)
2464 -- Brownie Points II Problem - 1156 hdu分类线段树的题.题意是,给出一堆点的位置,stan和ollie玩游戏,stan通过其中一个点画垂线,ollie通 ...
- LightOJ 1089 - Points in Segments (II) 线段树区间修改+离散化
http://www.lightoj.com/volume_showproblem.php?problem=1089 题意:给出许多区间,查询某个点所在的区间个数 思路:线段树,由于给出的是区间,查询 ...
- Day6 - E - Brownie Points II POJ - 2464
Stan and Ollie play the game of Odd Brownie Points. Some brownie points are located in the plane, at ...
- CDOJ 1259 昊昊爱运动 II 线段树+bitset
昊昊爱运动 II 昊昊喜欢运动 他N天内会参加M种运动(每种运动用一个[1,m]的整数表示) 现在有Q个操作,操作描述如下 昊昊把第l天到第r天的运动全部换成了x(x∈[1,m]) 问昊昊第l天到第r ...
随机推荐
- hdu 2079 选课时间_母函数
题意:需要学够n学分,有k个情况(x学分,y个相同学分的课) 解法:套母函数模板 #include <iostream> #include<cstdio> using name ...
- 安装jansson库【JSON库C语言版】
本次操作在Ubuntu 14.04下进行,其他的系统大同小异,安装软件时请根据系统版本进行调整. 1.下载jansson源码: git clone https://github.com/akheron ...
- 【set&&sstream||floyed判环算法】【UVa 11549】Calculator Conundrum
CALCULATOR CONUNDRUM Alice got a hold of an old calculator that can display n digits. She was bored ...
- Letter of inquiry about employment possibilities, e-mail version
Subject: (logical to recipient!) Inquiry about software engineering position after completion of M.S ...
- SQL-LINQ-Lambda 语法对照
SQL LINQ Lambda SELECT *FROM Employees from e in Employees select e Employees .Select (e => e) ...
- JSP进阶 之 SimpleTagSupport 开发自定义标签
绝大部分 Java 领域的 MVC 框架,例如 Struts.Spring MVC.JSF 等,主要由两部分组成:控制器组件和视图组件.其中视图组件主要由大量功能丰富的标签库充当.对于大部分开发者而言 ...
- Ubuntu安装中文字体
Ubuntu没有宋体,楷体之类的中文字体,在Libreoffice中打不出中文,-_-! 我们可以从windows中借点字体过来,哈哈. 一.准备字体 从windows7中拷贝出字体文件,拷贝的目录为 ...
- JavaWeb中filter的详解及应用案例
一:Filter介绍 Filter可认为是Servlet的一种“变种”,它主要用于对用户请求(HttpServletRequest)进行预处理,也可以对服务器响应(HttpServletRespons ...
- 研究 Javascript的&&和||的另类用法
这篇文章主要介绍了Javascript的&&和||的另类用法,需要的朋友可以参考下 最近也没什么心思写文章了,感觉总有忙不完的事情,呵. 不过这些天又开始研究起 Titanium 来, ...
- 数据库 count和sum区别
最近备考软考,复习数据库时候,发现count和sum,貌似差不错.就仔细查了查. 表 人 id name number 1 贱人 3 2 好人 4 select count(number) from ...