博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
A Story of One Country (Hard) CodeForces - 1181E2 (分治)
阅读量:5330 次
发布时间:2019-06-14

本文共 1903 字,大约阅读时间需要 6 分钟。

大意: 给定$n$个平面上互不相交的矩形. 若一个矩形区域只包含一个矩形或者它可以水平或垂直切成两块好的区域, 那么这个矩形区域是好的. 求判断整个平面区域是否是好的.

 

 

分治判断, 可以用链表实现删除元素, 或者直接用$set$

#include 
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#include
#define REP(i,a,n) for(int i=a;i<=n;++i)#define PER(i,a,n) for(int i=n;i>=a;--i)#define hr putchar(10)#define pb push_back#define lc (o<<1)#define rc (lc|1)#define mid ((l+r)>>1)#define ls lc,l,mid#define rs rc,mid+1,r#define x first#define y second#define io std::ios::sync_with_stdio(false)#define endl '\n'#define DB(a) ({REP(__i,1,n) cout<
<<' ';hr;})using namespace std;typedef long long ll;typedef pair
pii;const int P = 1e9+7, INF = 0x3f3f3f3f;ll gcd(ll a,ll b) {return b?gcd(b,a%b):a;}ll qpow(ll a,ll n) {ll r=1%P;for (a%=P;n;a=a*a%P,n>>=1)if(n&1)r=r*a%P;return r;}ll inv(ll x){return x<=1?1:inv(P%x)*(P-P/x)%P;}inline int rd() {int x=0;char p=getchar();while(p<'0'||p>'9')p=getchar();while(p>='0'&&p<='9')x=x*10+p-'0',p=getchar();return x;}//headconst int N = 1e6+10;struct _ { int l,r,id; bool operator < (const _ &rhs) const { if (l==rhs.l) return id
s[4];int dfs(set<_> L[4]) { if (L[0].size()<=1) return 1; set<_> R[4]; set<_>::iterator it[4]; int m[4]; REP(i,0,3) { it[i] = L[i].begin(); m[i] = it[i]++->r; } int sz = L[0].size(); REP(i,1,sz-1) REP(j,0,3) { if (it[j]->l>=m[j]) { for (auto t=L[j].begin(); t!=it[j]; ) { int id = t++->id; REP(k,0,3) R[k].insert(a[id][k]),L[k].erase(a[id][k]); } return dfs(L)&&dfs(R); } m[j] = max(m[j], it[j]++->r); } return 0;}int main() { int n=rd(); REP(i,1,n) { int x1=rd(),y1=rd(),x2=rd(),y2=rd(); a[i][0] = {x1,x2,i}; a[i][1] = {-x2,-x1,i}; a[i][2] = {y1,y2,i}; a[i][3] = {-y2,-y1,i}; REP(j,0,3) s[j].insert(a[i][j]); } cout<<(dfs(s)?"YES":"NO")<

 

转载于:https://www.cnblogs.com/uid001/p/11308341.html

你可能感兴趣的文章
Python正则表达式
查看>>
Linux进程间通信--命名管道
查看>>
UVa 10970 - Big Chocolate
查看>>
js输出
查看>>
set,env,export,set -x,set -e;
查看>>
H5多文本换行
查看>>
HAL层三类函数及其作用
查看>>
Odoo 去掉 恼人的 "上午"和"下午"
查看>>
web@h,c小总结
查看>>
java编程思想笔记(一)——面向对象导论
查看>>
Data Structure 基本概念
查看>>
Ubuntu改坏sudoers后无法使用sudo的解决办法
查看>>
NEYC 2017 游记
查看>>
【BZOJ 3669】 [Noi2014]魔法森林 LCT维护动态最小生成树
查看>>
[搬运] 写给 C# 开发人员的函数式编程
查看>>
对Python中yield的理解
查看>>
NailTech 公司网站制作思路
查看>>
Shiro权限控制框架
查看>>
java第六次作业
查看>>
vsftpd虚拟用户【公司系统部分享】
查看>>