CF 527C Glass Carving (set)

题目传送

1.横切和纵切是互不影响的,所以分开解决

2.用set储存切痕,multiset储存段长

3.更新时,向set中加入切痕,并找到相邻两条切痕itq和itp,将multiset中itq-itp的段长删除,加入新切痕构成的段长

4.最大横断长和最大纵断长的乘积即为结果

5.结果可能溢出int

 

#include <iostream>
#include <set>
using namespace std;
typedef long long ll;
typedef set<int>::iterator iter;
typedef multiset<int>::iterator miter;

set<int> x, y; //切痕
multiset<int> xx, yy; //段长

int main(void)
{
	int H, V, m;
	cin >> V >> H >> m;
	x.insert(0);
	x.insert(H);
	xx.insert(H);
	y.insert(0);
	y.insert(V);
	yy.insert(V);
	while (m--) {
		char op;
		int k;
		cin >> op >> k;
		if (op == 'H') {
			x.insert(k);
			iter it = x.find(k);
			iter itp = --it;
			it++;
			iter itq = ++it;
			it--;
			xx.erase(xx.find(*itq - *itp));
			xx.insert(*itq - *it);
			xx.insert(*it - *itp);
		}
		else { 
			y.insert(k);
			iter it = y.find(k);
			iter itp = --it;
			it++;
			iter itq = ++it;
			it--;
			yy.erase(yy.find(*itq - *itp));
			yy.insert(*itq - *it);
			yy.insert(*it - *itp);
		}
		miter itm = --xx.end();
		miter itn = --yy.end();
		cout << (ll)*itm * (ll)*itn << endl;
	}
	return 0;
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值