poj1389 Area of Simple Polygons

2023-11-02 11:38
文章标签 simple area poj1389 polygons

本文主要是介绍poj1389 Area of Simple Polygons,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

Area of Simple Polygons

题目背景:

poj1389

分析:之前突然发现自己竟然不会线段树扫描线,于是迅速的去找了一道裸题,就是求的矩形的面积并,调了一会儿,主要是没有进行数据update就直接返回导致出错,以后要注意。

Source

#include #include #include #include #include #include #include #include #include using namespace std; inline char read() { static const int IN_LEN = 1024 * 1024; static char buf[IN_LEN], *s, *t; if (s == t) { t = (s = buf) + fread(buf, 1, IN_LEN, stdin); if (s == t) return -1; } return *s++; } template inline bool R(T &x) { static char c; static bool iosig; for (c = read(), iosig = false; !isdigit(c); c = read()) { if (c == -1) return false; if (c == '-') iosig = true; } for (x = 0; isdigit(c); c = read()) x = (x << 3) + (x << 1) + (c ^ '0'); if (iosig) x = -x; return true; } const int OUT_LEN = 1024 * 1024; char obuf[OUT_LEN], *oh = obuf; inline void writechar(char c) { if (oh == obuf + OUT_LEN) fwrite(obuf, 1, OUT_LEN, stdout), oh = obuf; *oh++ = c; } template inline void W(T x) { static int buf[30], cnt; if (!x) writechar(48); else { if (x < 0) writechar('-'), x = -x; for (cnt = 0; x; x /= 10) buf[++cnt] = x % 10 + 48; while (cnt) writechar(buf[cnt--]); } } inline void flush() { fwrite(obuf, 1, oh - obuf, stdout); } const int MAXN = 50000 + 10; struct Tree { int cover; int sum; } tree[MAXN << 2]; struct node { int x, y1, y2, k; bool operator < (const node &a) const { return x < a.x; } } a[MAXN]; inline void update(int k, int l, int r) { if (tree[k].cover) tree[k].sum = r - l; else if (r == l + 1) tree[k].sum = 0; else tree[k].sum = tree[k << 1].sum + tree[k << 1 | 1].sum; } inline void modify(int k, int l, int r, int ql, int qr, int cnt) { // cout << l << " " << r << " " << ql << " " << qr << endl; if (ql <= l && r <= qr) tree[k].cover += cnt; /*不能在这一步直接return,一定要跑完update,否则会WA的很惨*/ else { int mid = l + r >> 1; if (ql < mid) modify(k << 1, l, mid, ql, qr, cnt); if (qr > mid) modify(k << 1 | 1, mid, r, ql, qr, cnt); } update(k, l, r); } int main() { // freopen("in.in", "r", stdin); int x1, x2, y1, y2, tot, ans; while (true) { tot = 0, ans = 0; R(x1), R(y1), R(x2), R(y2); if (x1 + y1 + x2 + y2 == -4) break; a[++tot].x = x1, a[tot].y1 = y1, a[tot].y2 = y2, a[tot].k = 1; a[++tot].x = x2, a[tot].y1 = y1, a[tot].y2 = y2, a[tot].k = -1; while (true) { R(x1), R(y1), R(x2), R(y2); if (x1 + y1 + x2 + y2 == -4) break; a[++tot].x = x1, a[tot].y1 = y1, a[tot].y2 = y2, a[tot].k = 1; a[++tot].x = x2, a[tot].y1 = y1, a[tot].y2 = y2, a[tot].k = -1; } sort(a + 1, a + tot + 1); // for (int i = 1; i <= tot; ++i) // cout << a[i].x << " " << a[i].y1 << " " << a[i].y2 << '\n'; modify(1, 0, MAXN, a[1].y1, a[1].y2, a[1].k); for (int i = 2; i <= tot; ++i) { ans += tree[1].sum * (a[i].x - a[i - 1].x); modify(1, 0, MAXN, a[i].y1, a[i].y2, a[i].k); } W(ans), writechar('\n'); } flush(); return 0; } 

这篇关于poj1389 Area of Simple Polygons的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/330351

相关文章

uva 10014 Simple calculations(数学推导)

直接按照题意来推导最后的结果就行了。 开始的时候只做到了第一个推导,第二次没有继续下去。 代码: #include<stdio.h>int main(){int T, n, i;double a, aa, sum, temp, ans;scanf("%d", &T);while(T--){scanf("%d", &n);scanf("%lf", &first);scanf

使用django-simple-captcha遇到的坑

使用django-simple-captcha遇到的坑 一站点gongshare.com在做注册功能时验证码采用的django-simple-captcha,因为笔者开发环境采用的Windows 64bit系统,结果安装使用的时候接二连三遇到好几个坑。 django-simple-captcha需要依赖django1.3+、PIL1.1.7+或者Pillow2.0+,根据文档安装后开始使用时,

HYPERCASUAL - Simple Characters(卡通游戏火柴人物模型)

介绍HyperCasual - 简单角色! 一套低多边形角色资源,用于创建超休闲风格的游戏。 包含演示场景 角色(x10) 生化人、小丑、Flaty_Boss、女孩、守门员、英雄、亚马逊女战士、男人、红衣男人、修理工 每个网格大约有700-2000个顶点 角色设置与Mecanim兼容(本包中不包含动画) 着色器适用于可编写脚本的渲染管线(HD + LW) 下载:​​Unity资源商店链接资源

[LeetCode] 695. Max Area of Island

题:https://leetcode.com/problems/max-area-of-island/description/ 题目 Given a non-empty 2D array grid of 0’s and 1’s, an island is a group of 1’s (representing land) connected 4-directionally (horizont

【HDU】4975 A simple Gaussian elimination problem. 网络流——行列建边

传送门:【HDU】4975 A simple Gaussian elimination problem. 题目分析:这题和某一场的多校的题目出奇的像啊!重要的是我一开始还以为不可能会出一样的题。。结果迟迟没写啊。。。后来觉得实在想不出什么对策了,虽然觉得给的是0~9很特殊,但是利用不起来,果断还是敲了网络流了。。首先建图很简单,源点向行建边,容量为行和,列向汇点建边,容量为列和,然后所有的

Splay树(区间更新)—— POJ 3468 A Simple Problem with Integers

对应POJ 题目:点击打开链接 A Simple Problem with Integers Time Limit: 5000MS Memory Limit: 131072KTotal Submissions: 72765 Accepted: 22465Case Time Limit: 2000MS Description You have N integers, A1

大文件上传vue插件vue-simple-uploader

https://www.cnblogs.com/xiahj/p/vue-simple-uploader.html

监控flash_recovery_area的使用情况(V$FLASH_RECOVERY_AREA_USAGE,V$RECOVERY_FILE_DEST)

--监控flash_recovery_area的使用情况(V$FLASH_RECOVERY_AREA_USAGE,V$RECOVERY_FILE_DEST)SYS@PROD1> select * from V$FLASH_RECOVERY_AREA_USAGE;FILE_TYPE PERCENT_SPACE_USED PERCENT_SPACE_RECLAIMABLE NUMBER_OF

Area of Polycubes(简单模拟)

http://poj.org/problem?id=3792 题意:给出n个立方体的三维坐标,在每个立方体与之前的立方体有公共边的前提下输出他们的表面积,否则输出NO,并输出不合法的立方体编号。 注意有重的立方体,也输出NO。 #include <stdio.h>#include <string.h>#include <algorithm>#include <cmath

innovus:report_area和reportGateCount报告module面积的差异

我正在「拾陆楼」和朋友们讨论有趣的话题,你⼀起来吧? 拾陆楼知识星球入口 相关文章链接: