博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
bzoj 1597: [Usaco2008 Mar]土地购买
阅读量:5236 次
发布时间:2019-06-14

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

式子显然随便搞搞就行,,而且可以先把这些矩形排序,然后如果有比当前矩形x和y都大的矩形,这个矩形是可以忽略的。

1 #include 
2 #define LL long long 3 #define lowbit(x) x&(-x) 4 #define inf 0x3f3f3f3f 5 #define eps 1e-5 6 #define N 100005 7 using namespace std; 8 inline int ra() 9 {10 int x=0,f=1; char ch=getchar();11 while (ch<'0' || ch>'9') {
if (ch=='-') f=-1; ch=getchar();}12 while (ch>='0' && ch<='9') {x=x*10+ch-'0'; ch=getchar();}13 return x*f;14 }15 int n,tot;16 LL x[N],y[N],f[N];17 int q[N];18 struct node{
int x,y;}a[N];19 bool cmp(node a, node b){
return a.x==b.x?a.y
=y[tot]) tot--;29 x[++tot]=a[i].x; y[tot]=a[i].y;30 }31 int l=0,r=0;32 for (int i=1; i<=tot; i++)33 {34 while (l

 

转载于:https://www.cnblogs.com/ccd2333/p/6523091.html

你可能感兴趣的文章
C++按格式接收输入字符(京东,滴滴,360笔试必用)
查看>>
代理ARP
查看>>
go 学习笔记(4) ---项目结构
查看>>
分割线细线
查看>>
java 中的一些运算符问题
查看>>
css切换--使用cookie
查看>>
java中静态代码块的用法 static用法详解
查看>>
Java线程面试题
查看>>
Paper Reading: Relation Networks for Object Detection
查看>>
Android中点中overlay弹出带尾巴的气泡的实现
查看>>
Mybatis接口中传递多个参数
查看>>
Dreamweaver层使用八定律
查看>>
Java IO流学习总结
查看>>
day22 01 初识面向对象----简单的人狗大战小游戏
查看>>
数组的几种常用方法总结
查看>>
递归函数,二分运算,正则表达式
查看>>
阅读软件工程的问题
查看>>
【Netty】UDP广播事件
查看>>
(4)Numpy+矩阵计算+和生成
查看>>
ttt
查看>>