hdu 4629 Burning(二维图形学)

2024-01-19 22:18

本文主要是介绍hdu 4629 Burning(二维图形学),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

二维图形学,还是相当烦人的

#include <cstdio>
#include <iostream>
#include <cmath>
#include <algorithm>
using namespace std;
const double eps = 1e-8;
const int MAXN = 55;
const int MAXNUM = 25000;
int nump, n;
inline int dbCmp(const double x, const double y)
{if ( fabs(x-y) < eps) return 0;return x<y?-1:1;
}struct point
{double x, y;point(){}point(double a, double b){x = a; y = b;}void getin(){scanf("%lf%lf", &x, &y);}bool operator < (const point & a) const{return -1 == dbCmp(x,a.x);}bool operator == (const point & a) const{return 0 == dbCmp(x,a.x);}point operator - (const point & a){return point(x-a.x, y-a.y);}double operator * (const point &a){return x*a.y-y*a.x;}
}tpp[MAXNUM];	// 临时数据 
double getCal(point frm, point ta, point tb) // 
{return (ta-frm)*(tb-frm);
}
struct line
{point a, b;double A,B,C;int sz; // sz == 0 : up+, down-;line(){}line(point c, point d){a = c, b = d;}bool operator < (const line & e) const{return -1 == dbCmp(a.y+b.y, e.a.y+e.b.y);}int isCross(const line & e){if (getCal(e.a, a, b) * getCal(e.b, a, b)<0.0) return 1;return 0;}void operator *(const line &exa) const{tpp[nump++] = point((B*exa.C-exa.B*C)/(exa.B*A-B*exa.A), 0.0);}void mset(double x1, double x2){a.x = x1; b.x = x2;a.y = (C+A*x1)/-B;b.y = (C+A*x2)/-B;}
}tpl[MAXN*3];
struct triangles 
{point pt[3];line mlin[3];void getin(){pt[0].getin(); pt[1].getin(); pt[2].getin();for (int i = 0; i< 3; ++i){int ii = (i+1)%3;if (pt[i].x < pt[ii].x) mlin[i] = line(pt[i], pt[ii]);else mlin[i] = line(pt[ii], pt[i]);mlin[i].A = pt[i].y - pt[ii].y;mlin[i].B = pt[ii].x - pt[i].x;mlin[i].C = pt[i].x*(-mlin[i].A) - pt[i].y*(mlin[i].B);if (dbCmp(pt[i].x, pt[ii].x) == 0){mlin[i].sz = 0;}else{int tt = (i+2)%3;if (getCal(mlin[i].a, mlin[i].b, pt[tt]) < 0.0)mlin[i].sz = -1;elsemlin[i].sz = 1;}}}void getCross(const triangles & exa){for (int i = 0; i< 3; ++i){for (int j = 0; j< 3; ++j){if (mlin[i].isCross(exa.mlin[j])){mlin[i]*exa.mlin[j];}}}}
}mtr[MAXN];	// 三角形 
double res[MAXN];
int main()
{
#ifndef ONLINE_JUDGEfreopen("in.txt", "r", stdin);
#endifint t;scanf("%d", &t);while (t--){scanf("%d", &n);nump = 0;int cnt = 0;for (int i = 0; i< n; ++i){mtr[i].getin();tpp[nump++] = mtr[i].pt[0];tpp[nump++] = mtr[i].pt[1];tpp[nump++] = mtr[i].pt[2];res[i] = 0.0;}for (int i = 0; i< n; ++i){for (int j = i+1; j< n; ++j){mtr[i].getCross(mtr[j]);}}sort(tpp, tpp+nump);nump = unique(tpp, tpp+nump) - tpp;for (int i = 1; i< nump; ++i){cnt = 0;for (int j = 0; j< n; ++j){for (int k = 0; k< 3; ++k){if (mtr[j].mlin[k].a.x <= tpp[i-1].x && mtr[j].mlin[k].b.x >= tpp[i].x){tpl[cnt] = mtr[j].mlin[k];tpl[cnt++].mset(tpp[i-1].x, tpp[i].x);}}}sort(tpl, tpl+cnt);int tp = 1;for (int j = 1; j< cnt; ++j){res[tp] += (tpp[i].x-tpp[i-1].x)*(tpl[j].a.y - tpl[j-1].a.y + tpl[j].b.y - tpl[j-1].b.y)/2;tp += tpl[j].sz;}}for (int i = 1; i<= n; ++i){printf("%.10lf\n", res[i]);}}return 0;
}


这篇关于hdu 4629 Burning(二维图形学)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



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

相关文章

poj2576(二维背包)

题意:n个人分成两组,两组人数只差小于1 , 并且体重只差最小 对于人数要求恰好装满,对于体重要求尽量多,一开始没做出来,看了下解题,按照自己的感觉写,然后a了 状态转移方程:dp[i][j] = max(dp[i][j],dp[i-1][j-c[k]]+c[k]);其中i表示人数,j表示背包容量,k表示输入的体重的 代码如下: #include<iostream>#include<

hdu2159(二维背包)

这是我的第一道二维背包题,没想到自己一下子就A了,但是代码写的比较乱,下面的代码是我有重新修改的 状态转移:dp[i][j] = max(dp[i][j], dp[i-1][j-c[z]]+v[z]); 其中dp[i][j]表示,打了i个怪物,消耗j的耐力值,所得到的最大经验值 代码如下: #include<iostream>#include<algorithm>#include<

usaco 1.3 Mixing Milk (结构体排序 qsort) and hdu 2020(sort)

到了这题学会了结构体排序 于是回去修改了 1.2 milking cows 的算法~ 结构体排序核心: 1.结构体定义 struct Milk{int price;int milks;}milk[5000]; 2.自定义的比较函数,若返回值为正,qsort 函数判定a>b ;为负,a<b;为0,a==b; int milkcmp(const void *va,c

poj 3974 and hdu 3068 最长回文串的O(n)解法(Manacher算法)

求一段字符串中的最长回文串。 因为数据量比较大,用原来的O(n^2)会爆。 小白上的O(n^2)解法代码:TLE啦~ #include<stdio.h>#include<string.h>const int Maxn = 1000000;char s[Maxn];int main(){char e[] = {"END"};while(scanf("%s", s) != EO

hdu 2093 考试排名(sscanf)

模拟题。 直接从教程里拉解析。 因为表格里的数据格式不统一。有时候有"()",有时候又没有。而它也不会给我们提示。 这种情况下,就只能它它们统一看作字符串来处理了。现在就请出我们的主角sscanf()! sscanf 语法: #include int sscanf( const char *buffer, const char *format, ... ); 函数sscanf()和

hdu 2602 and poj 3624(01背包)

01背包的模板题。 hdu2602代码: #include<stdio.h>#include<string.h>const int MaxN = 1001;int max(int a, int b){return a > b ? a : b;}int w[MaxN];int v[MaxN];int dp[MaxN];int main(){int T;int N, V;s

hdu 1754 I Hate It(线段树,单点更新,区间最值)

题意是求一个线段中的最大数。 线段树的模板题,试用了一下交大的模板。效率有点略低。 代码: #include <stdio.h>#include <string.h>#define TREE_SIZE (1 << (20))//const int TREE_SIZE = 200000 + 10;int max(int a, int b){return a > b ? a :

hdu 1166 敌兵布阵(树状数组 or 线段树)

题意是求一个线段的和,在线段上可以进行加减的修改。 树状数组的模板题。 代码: #include <stdio.h>#include <string.h>const int maxn = 50000 + 1;int c[maxn];int n;int lowbit(int x){return x & -x;}void add(int x, int num){while

hdu 3790 (单源最短路dijkstra)

题意: 每条边都有长度d 和花费p,给你起点s 终点t,要求输出起点到终点的最短距离及其花费,如果最短距离有多条路线,则输出花费最少的。 解析: 考察对dijkstra的理解。 代码: #include <iostream>#include <cstdio>#include <cstdlib>#include <algorithm>#include <cstrin

hdu 2489 (dfs枚举 + prim)

题意: 对于一棵顶点和边都有权值的树,使用下面的等式来计算Ratio 给定一个n 个顶点的完全图及它所有顶点和边的权值,找到一个该图含有m 个顶点的子图,并且让这个子图的Ratio 值在所有m 个顶点的树中最小。 解析: 因为数据量不大,先用dfs枚举搭配出m个子节点,算出点和,然后套个prim算出边和,每次比较大小即可。 dfs没有写好,A的老泪纵横。 错在把index在d