【codeforces 527C】Glass Carving
【题目链接】:http://codeforces.com/contest/527/problem/C
【题意】
让你切割一个长方形;
只能横切或竖切;
让你实时输出切完之后最大的长方形的面积;
【题解】
这里最大的长方形的面积对应的就是最大的竖线间隔*最大的横线间隔;
我们先把所有的边读入->存起来
然后分成横线和竖线两类;
按照位置从小到大排个序;
然后先求出第n个询问的答案
也即这个时候竖线的最大间隔和横线的最大间隔;
然后离线处理;
逆序删掉第i条线
然后维护这个时候最大的横线和竖线间隔;
因为只会删掉一条边,
所以只要考虑这条边左边最靠近它的线和它右边最靠近它的线;
看看它们俩的差值能不能更新横线或者是竖线的最大间隔;
用一个类似链表的东西模拟删除的过程就好;
【完整代码】
#include <bits/stdc++.h>
using namespace std;
#define lson l,m,rt<<1
#define rson m+1,r,rt<<1|1
#define LL long long
#define rep1(i,a,b) for (int i = a;i <= b;i++)
#define rep2(i,a,b) for (int i = a;i >= b;i--)
#define mp make_pair
#define ps push_back
#define fi first
#define se second
#define rei(x) scanf("%d",&x)
#define rel(x) scanf("%lld",&x)
#define ref(x) scanf("%lf",&x)
typedef pair<int, int> pii;
typedef pair<LL, LL> pll;
const int dx[9] = { 0,1,-1,0,0,-1,-1,1,1 };
const int dy[9] = { 0,0,0,-1,1,-1,1,-1,1 };
const double pi = acos(-1.0);
const int N = 2e5+100;
struct abc
{
LL pos;
int l,r;
};
LL w, h,x,gap_heng,gap_shu, pp[N];
int n,sshu,sheng;
char p[N][5];
vector <abc> shu, heng;
vector <LL> ans;
abc temp;
bool cmp(abc a, abc b)
{
return a.pos < b.pos;
}
int main()
{
//freopen("F:\\rush.txt", "r", stdin);
rel(w), rel(h), rei(n);
rep1(i, 1, n)
{
scanf("%s", p[i]); rel(pp[i]);
temp.pos = pp[i];
if (p[i][0] == 'V')
shu.ps(temp);
else
heng.ps(temp);
}
temp.pos = 0; shu.ps(temp); heng.ps(temp);
temp.pos = w; shu.ps(temp); temp.pos = h, heng.ps(temp);
sort(shu.begin(), shu.end(),cmp),sort(heng.begin(), heng.end(),cmp);
sshu = shu.size();
rep1(i, 1, sshu - 2)
{
shu[i].l = i - 1;
shu[i].r = i + 1;
}
rep1(i, 1, sshu - 1)
{
gap_shu = max(gap_shu, shu[i].pos - shu[i - 1].pos);
}
sheng = heng.size();
rep1(i, 1, sheng - 2)
{
heng[i].l = i - 1;
heng[i].r = i + 1;
}
rep1(i, 1, sheng - 1)
{
gap_heng = max(gap_heng, heng[i].pos - heng[i - 1].pos);
}
rep2(i, n, 1)
{
ans.ps(gap_heng*gap_shu);
if (p[i][0] == 'V')
{
temp.pos = pp[i];
int pos = lower_bound(shu.begin(), shu.end(), temp,cmp) - shu.begin();
int l = shu[pos].l, r = shu[pos].r;
gap_shu = max(gap_shu, shu[r].pos - shu[l].pos);
shu[l].r = r;
shu[r].l = l;
}
else
{
temp.pos = pp[i];
int pos = lower_bound(heng.begin(), heng.end(), temp,cmp) - heng.begin();
int l = heng[pos].l, r = heng[pos].r;
gap_heng = max(gap_heng, heng[r].pos - heng[l].pos);
heng[l].r = r;
heng[r].l = l;
}
}
rep2(i, n - 1, 0)
{
printf("%lld\n", ans[i]);
}
//printf("\n%.2lf sec \n", (double)clock() / CLOCKS_PER_SEC);
return 0;
}
【codeforces 527C】Glass Carving的更多相关文章
- 【CF527C】Glass Carving
[CF527C]Glass Carving 题面 洛谷 题解 因为横着切与纵切无关 所以开\(set\)维护横着的最大值和纵着的最大值即可 #include <iostream> #inc ...
- 【codeforces 415D】Mashmokh and ACM(普通dp)
[codeforces 415D]Mashmokh and ACM 题意:美丽数列定义:对于数列中的每一个i都满足:arr[i+1]%arr[i]==0 输入n,k(1<=n,k<=200 ...
- [codeforces 528]A. Glass Carving
[codeforces 528]A. Glass Carving 试题描述 Leonid wants to become a glass carver (the person who creates ...
- 【15.07%】【codeforces 625A】Guest From the Past
time limit per test 1 second memory limit per test 256 megabytes input standard input output standar ...
- 【codeforces 707E】Garlands
[题目链接]:http://codeforces.com/contest/707/problem/E [题意] 给你一个n*m的方阵; 里面有k个联通块; 这k个联通块,每个连通块里面都是灯; 给你q ...
- 【codeforces 707C】Pythagorean Triples
[题目链接]:http://codeforces.com/contest/707/problem/C [题意] 给你一个数字n; 问你这个数字是不是某个三角形的一条边; 如果是让你输出另外两条边的大小 ...
- 【codeforces 709D】Recover the String
[题目链接]:http://codeforces.com/problemset/problem/709/D [题意] 给你一个序列; 给出01子列和10子列和00子列以及11子列的个数; 然后让你输出 ...
- 【codeforces 709B】Checkpoints
[题目链接]:http://codeforces.com/contest/709/problem/B [题意] 让你从起点开始走过n-1个点(至少n-1个) 问你最少走多远; [题解] 肯定不多走啊; ...
- 【codeforces 709C】Letters Cyclic Shift
[题目链接]:http://codeforces.com/contest/709/problem/C [题意] 让你改变一个字符串的子集(连续的一段); ->这一段的每个字符的字母都变成之前的一 ...
随机推荐
- .NET下WebBrowser的一个BUG以及其替代品——geckofx
今天研究一个小问题,在C#的WebBrowser下打开奇艺网的视频,经常整个FLASH就偏了,进度条控制条什么的都没有. 要全屏一下然后还原才能解决这个问题. 如下,图1为webbrowser打开,图 ...
- 利用【监听器】动态加载Log4j配置文件
转自:https://veromca273.iteye.com/blog/1889304 1 创建监听器: public class LogListener implements ServletCon ...
- linux_bash_shell_cheat_sheet(自译)
[说明] 发现错误或不足请务必联系我!!! linux_bash_shell_cheat_sheet.pdf (英文原本以及译本下载,链接失效请私信或邮箱联系)
- 【RAID在数据库存储上的应用 】
随着单块磁盘在数据安全.性能.容量上呈现出的局限,磁盘阵列(Redundant Arrays of Inexpensive/Independent Disks,RAID)出现了,RAID把多块独立的磁 ...
- 如何为你的Go应用创建轻量级Docker镜像?
介绍 多什么? 简单来讲,多阶段. 多阶段允许在创建Dockerfile时使用多个from,它非常有用,因为它使我们能够使用所有必需的工具构建应用程序.举个例子,首先我们使用Golang的基础镜像,然 ...
- 使用php实现二叉搜索树
看到一位大神写的js的搜索树,自己也按照模式写了一个php的二叉搜索树. <?phpclass node{ public $data; public $key; public $left=nul ...
- IE下a标签会触发window.onbeforeunload的问题
今天同事发现一个问题,在我做的控件中,点击tab切换的时候,IE上会触发他页面上的onbeforeunload的事件.一开始以为是我控件上事件导致的,但是当我把所有的绑定事件取消以后,问题依然存在.我 ...
- 在chrome里模拟调试微信浏览器
开发者模式(下面有配图): 开发者模式/DevTools.More tools/Network conditions/User agent/ Custom/安卓或ios代理配置配置 更改User ag ...
- Linux 本命令 基本上用到的命令-自己留着用
1:在某个目录下查找文件: find /data -name '*srm*' 2:监测文件流: tail –f /data/log.xml 3: 删除文件: rm –f /data/log.xm ...
- centos语言设置
. echo $LANG可以查看当前使用的系统语言 . 在终端输入 locale命令,如有zh cn 表示已经安装了中文 . 安装中文语言包yum groupinstall chinese-suppo ...