C. Glass Carving
time limit per test

2 seconds

memory limit per test

256 megabytes

input

standard input

output

standard output

Leonid wants to become a glass carver (the person who creates beautiful artworks by cutting the glass). He already has a rectangular wmm  ×  h mm sheet of glass, a diamond glass cutter and lots of enthusiasm. What he lacks is understanding of what to carve and how.

In order not to waste time, he decided to practice the technique of carving. To do this, he makes vertical and horizontal cuts through the entire sheet. This process results in making smaller rectangular fragments of glass. Leonid does not move the newly made glass fragments. In particular, a cut divides each fragment of glass that it goes through into smaller fragments.

After each cut Leonid tries to determine what area the largest of the currently available glass fragments has. Since there appear more and more fragments, this question takes him more and more time and distracts him from the fascinating process.

Leonid offers to divide the labor — he will cut glass, and you will calculate the area of the maximum fragment after each cut. Do you agree?

Input

The first line contains three integers w, h, n (2 ≤ w, h ≤ 200 000, 1 ≤ n ≤ 200 000).

Next n lines contain the descriptions of the cuts. Each description has the form H y or V x. In the first case Leonid makes the horizontal cut at the distance y millimeters (1 ≤ y ≤ h - 1) from the lower edge of the original sheet of glass. In the second case Leonid makes a vertical cut at distance x (1 ≤ x ≤ w - 1) millimeters from the left edge of the original sheet of glass. It is guaranteed that Leonid won't make two identical cuts.

Output

After each cut print on a single line the area of the maximum available glass fragment in mm2.

Sample test(s)
input
4 3 4
H 2
V 2
V 3
V 1
output
8
4
4
2
input
7 6 5
H 4
V 3
V 5
H 2
V 1
output
28
16
12
6
4

题意:给出一个n*m的矩阵,然后按照要求切线,问每切一条线分割后的最大矩形面积是多少?
分析:开4个set关联容器,其中sh存的是垂直线上的子区间长度,sw存的是水平线上的子区间长度,qh存的是划分的高度上的切割点,qw存的是划分宽度上的切割点,然后每次加入一条直线,先从q里面找出它的左右相邻的点,把该区间分割,然后用s维护子区间长度,每次把水平线上最大的子区间长度和垂直线上的最大子区间长度相乘即可
#include"cstdio"
#include"cstring"
#include"cstdlib"
#include"cmath"
#include"string"
#include"map"
#include"cstring"
#include"algorithm"
#include"iostream"
#include"set"
#include"queue"
#include"stack"
#define inf 0x3f3f3f3f
#define M 200009
#define LL __int64
#define eps 1e-8
#define mod 1000000007
using namespace std;
int w[M],h[M];
int main()
{
int W,H,n;
while(scanf("%d%d%d",&W,&H,&n)!=-)
{
set<int>sw,sh;
set<int>qw,qh;
sw.clear();
sh.clear();
memset(w,,sizeof(w));
memset(h,,sizeof(h));
sw.insert(W);
sw.insert(-W);
sh.insert(H);
sh.insert(-H);
qw.insert();
qw.insert(W);
qw.insert(-W);
qh.insert();
qh.insert(H);
qh.insert(-H);
w[W]++;
h[H]++;
char ch[];
int x;
while(n--)
{
scanf("%s%d",ch,&x);
if(ch[]=='H')
{
qh.insert(x);
qh.insert(-x);
int r=*(qh.upper_bound(x));
int l=-*(qh.upper_bound(-x));
if(h[r-l])//记录该长度出现的次数
h[r-l]--;
if(!h[r-l])
{
sh.erase(r-l);
sh.erase(l-r);
} sh.insert(x-l);
h[x-l]++;
sh.insert(r-x);
h[r-x]++;
sh.insert(l-x);
sh.insert(x-r);
}
else
{
qw.insert(x);
qw.insert(-x);
int r=*(qw.upper_bound(x));
int l=-*(qw.upper_bound(-x));
if(w[r-l])
w[r-l]--;
if(!w[r-l])
{
sw.erase(r-l);
sw.erase(l-r);
} sw.insert(x-l);
w[x-l]++;
sw.insert(r-x);
w[r-x]++;
sw.insert(l-x);
sw.insert(x-r);
}
set<int>::iterator r1,r2;
r1=sh.begin();
r2=sw.begin();
printf("%I64d\n",(LL)(*r1)*(*r2));
}
}
return ;
}
 #include"cstdio"
#include"cstring"
#include"cstdlib"
#include"cmath"
#include"string"
#include"map"
#include"cstring"
#include"algorithm"
#include"iostream"
#include"set"
#include"queue"
#include"stack"
#define inf 0x3f3f3f3f
#define M
#define LL __int64
#define eps 1e-8
#define mod
using namespace std;
int w[M],h[M];
int main()
{
int W,H,n;
while(scanf("%d%d%d",&W,&H,&n)!=-1)
{
set<int>sw,sh;
set<int>qw,qh;
sw.clear();
sh.clear();
memset(w,,sizeof(w));
memset(h,,sizeof(h));
sw.insert(W);
sw.insert(-W);
sh.insert(H);
sh.insert(-H);
qw.insert();
qw.insert(W);
qw.insert(-W);
qh.insert();
qh.insert(H);
qh.insert(-H);
w[W]++;
h[H]++;
char ch[];
int x;
while(n--)
{
scanf("%s%d",ch,&x);
if(ch[]=='H')
{
qh.insert(x);
qh.insert(-x);
int r=*(qh.upper_bound(x));
int l=-*(qh.upper_bound(-x));
if(h[r-l])//记录该长度出现的次数
h[r-l]--;
if(!h[r-l])
{
sh.erase(r-l);
sh.erase(l-r);
} sh.insert(x-l);
h[x-l]++;
sh.insert(r-x);
h[r-x]++;
sh.insert(l-x);
sh.insert(x-r);
}
else
{
qw.insert(x);
qw.insert(-x);
int r=*(qw.upper_bound(x));
int l=-*(qw.upper_bound(-x));
if(w[r-l])
w[r-l]--;
if(!w[r-l])
{
sw.erase(r-l);
sw.erase(l-r);
} sw.insert(x-l);
w[x-l]++;
sw.insert(r-x);
w[r-x]++;
sw.insert(l-x);
sw.insert(x-r);
}
set<int>::iterator r1,r2;
r1=sh.begin();
r2=sw.begin();
printf("%I64d\n",(LL)(*r1)*(*r2));
}
}
return ;
}

codeforces-Glass Carving(527C)std::set用法的更多相关文章

  1. Codeforces 527C Glass Carving

    vjudge 上题目链接:Glass Carving 题目大意: 一块 w * h 的玻璃,对其进行 n 次切割,每次切割都是垂直或者水平的,输出每次切割后最大单块玻璃的面积: 用两个 set 存储每 ...

  2. Codeforces 527C Glass Carving(Set)

    意甲冠军  片w*h玻璃  其n斯普利特倍  各事业部为垂直或水平  每个分割窗格区域的最大输出 用两个set存储每次分割的位置   就能够比較方便的把每次分割产生和消失的长宽存下来  每次分割后剩下 ...

  3. Glass Carving CodeForces - 527C (线段树)

    C. Glass Carving time limit per test2 seconds memory limit per test256 megabytes inputstandard input ...

  4. [codeforces 528]A. Glass Carving

    [codeforces 528]A. Glass Carving 试题描述 Leonid wants to become a glass carver (the person who creates ...

  5. Codeforces Round #296 (Div. 2) C. Glass Carving [ set+multiset ]

    传送门 C. Glass Carving time limit per test 2 seconds memory limit per test 256 megabytes input standar ...

  6. codeforces 527 C Glass Carving

    Glass Carving time limit per test 2 seconds Leonid wants to become a glass carver (the person who cr ...

  7. Codeforces Round #296 (Div. 1) A. Glass Carving Set的妙用

    A. Glass Carving time limit per test 2 seconds memory limit per test 256 megabytes input standard in ...

  8. CF #296 (Div. 1) A. Glass Carving 线段树

    A. Glass Carving time limit per test 2 seconds memory limit per test 256 megabytes input standard in ...

  9. 【CF527C】Glass Carving

    [CF527C]Glass Carving 题面 洛谷 题解 因为横着切与纵切无关 所以开\(set\)维护横着的最大值和纵着的最大值即可 #include <iostream> #inc ...

随机推荐

  1. 【转】Warning: mysql_connect(): mysqlnd cannot connect to MySQL 4.1+ using the old insecure authenticat

    Warning: mysql_connect(): mysqlnd cannot connect to MySQL 4.1+ using the old insecure authenticat 当m ...

  2. 【转】C# 解析 json

    C# 解析 json JSON(全称为JavaScript Object Notation) 是一种轻量级的数据交换格式.它是基于JavaScript语法标准的一个子集. JSON采用完全独立于语言的 ...

  3. 蓝牙BLE 架构剖析

    一.BLE架构概述: 二.各个层

  4. 使用VC2005编译真正的静态Qt程序

    首先,你应该该知道什么叫静态引用编译.什么叫动态引用编译.我这里只是简单的提提,具体的可以google一下. 动态引用编译,是指相关的库,以dll的形式引用库.动态编译的Exe程序尺寸比较小,因为相关 ...

  5. BAT for循环

    一,数字循环 echo off & color 0A for /l %%i in (1,1,10) do ( echo %%i ) pause > nul 输出: 1 2 3 4 5 6 ...

  6. 关于android获得设备宽高

    传统的办法: DisplayMetrics dm = new DisplayMetrics(); getWindowManager().getDefaultDisplay().getMetrics(d ...

  7. (leetcode)Reverse Linked List 脑子已经僵住

    Reverse a singly linked list. 参考http://www.2cto.com/kf/201110/106607.html 方法1: 讲每个节点的指针指向前面就可以. /** ...

  8. 10 Golden Rules of Project Risk Management

    The benefits of risk management in projects are huge. You can gain a lot of money if you deal with u ...

  9. thinkPHP 接支付宝及时到账接口

    支付宝及时到帐接口,现在整理以下: 1.先将支付宝提供的公共类库函数库文件防盗thinkPHP的Vender目录下建的一个alipay文件下,以便之后的调用. //四个文件我分别给他们改了下名字,因为 ...

  10. C++经典编程题#4:单词翻转

    总时间限制:  1000ms  内存限制:  65536kB 描述 输入一个句子(一行),将句子中的每一个单词翻转后输出. 输入 只有一行,为一个字符串,不超过500个字符.单词之间以空格隔开. 输出 ...