POJ 2225 / ZOJ 1438 / UVA 1438 Asteroids --三维凸包,求多面体重心
题意: 两个凸多面体,可以任意摆放,最多贴着,问他们重心的最短距离。
解法: 由于给出的是凸多面体,先构出两个三维凸包,再求其重心,求重心仿照求三角形重心的方式,然后再求两个多面体的重心到每个多面体的各个面的最短距离,然后最短距离相加即为答案,因为显然贴着最优。
求三角形重心见此: http://www.cnblogs.com/whatbeg/p/4234518.html
代码:(模板借鉴网上模板)
#include <iostream>
#include <cstdio>
#include <cstring>
#include <cstdlib>
#include <cmath>
#include <algorithm>
#include <string>
#include <vector>
#include <set>
#define Mod 1000000007
#define eps 1e-8
#define lll __int64
#define ll long long
using namespace std;
#define N 100007
#define MAXV 505 //三维点
struct pt{
double x, y, z;
pt(){}
pt(double _x, double _y, double _z): x(_x), y(_y), z(_z){}
pt operator - (const pt p1){return pt(x - p1.x, y - p1.y, z - p1.z);}
pt operator * (pt p){return pt(y*p.z-z*p.y, z*p.x-x*p.z, x*p.y-y*p.x);} //叉乘
double operator ^ (pt p){return x*p.x+y*p.y+z*p.z;} //点乘
}; //pt operator - (const pt p,const pt p1){return pt(p.x - p1.x, p.y - p1.y, p.z - p1.z);}
//pt operator ** (pt p,pt p1){return pt(p.y*p1.z-p.z*p1.y, p.z*p1.x-p.x*p1.z, p.x*p1.y-p.y*p1.x);} //叉乘
//double operator ^^ (pt p1,pt p){return p1.x*p.x+p1.y*p.y+p1.z*p.z;} struct _3DCH{
struct fac{
int a, b, c; //表示凸包一个面上三个点的编号
bool ok; //表示该面是否属于最终凸包中的面
}; int n; //初始点数
pt P[MAXV]; //初始点 int cnt; //凸包表面的三角形数
fac F[MAXV*]; //凸包表面的三角形 int to[MAXV][MAXV]; double vlen(pt a){return sqrt(a.x*a.x+a.y*a.y+a.z*a.z);} //向量长度
double area(pt a, pt b, pt c){return vlen((b-a)*(c-a));} //三角形面积*2
double volume(pt a, pt b, pt c, pt d){return (b-a)*(c-a)^(d-a);} //四面体有向体积*6 //正:点在面同向
double ptof(pt &p, fac &f){
pt m = P[f.b]-P[f.a], n = P[f.c]-P[f.a], t = p-P[f.a];
return (m * n) ^ t;
}
pt pvec(fac s) {
pt k1 = (P[s.a]-P[s.b]), k2 = (P[s.b]-P[s.c]);
return (k1*k2);
}
double ptoplane(pt p,fac s){
return fabs(pvec(s)^(p-P[s.a]))/vlen(pvec(s));
} void deal(int p, int a, int b){
int f = to[a][b];
fac add;
if (F[f].ok){
if (ptof(P[p], F[f]) > eps)
dfs(p, f);
else{
add.a = b, add.b = a, add.c = p, add.ok = ;
to[p][b] = to[a][p] = to[b][a] = cnt;
F[cnt++] = add;
}
}
} void dfs(int p, int cur){
F[cur].ok = ;
deal(p, F[cur].b, F[cur].a);
deal(p, F[cur].c, F[cur].b);
deal(p, F[cur].a, F[cur].c);
} bool same(int s, int t){
pt &a = P[F[s].a], &b = P[F[s].b], &c = P[F[s].c];
return fabs(volume(a, b, c, P[F[t].a])) < eps && fabs(volume(a, b, c, P[F[t].b])) < eps && fabs(volume(a, b, c, P[F[t].c])) < eps;
} //构建三维凸包
void construct(){
cnt = ;
if (n < )
return; /*********此段是为了保证前四个点不公面,若已保证,可去掉********/
bool sb = ;
//使前两点不公点
for (int i = ; i < n; i++){
if (vlen(P[] - P[i]) > eps){
swap(P[], P[i]);
sb = ;
break;
}
}
if (sb)return; sb = ;
//使前三点不公线
for (int i = ; i < n; i++){
if (vlen((P[] - P[]) * (P[] - P[i])) > eps){
swap(P[], P[i]);
sb = ;
break;
}
}
if (sb)return; sb = ;
//使前四点不共面
for (int i = ; i < n; i++){
if (fabs((P[] - P[]) * (P[] - P[]) ^ (P[] - P[i])) > eps){
swap(P[], P[i]);
sb = ;
break;
}
}
if (sb)return;
/*********此段是为了保证前四个点不公面********/ fac add;
for (int i = ; i < ; i++){
add.a = (i+)%, add.b = (i+)%, add.c = (i+)%, add.ok = ;
if (ptof(P[i], add) > )
swap(add.b, add.c);
to[add.a][add.b] = to[add.b][add.c] = to[add.c][add.a] = cnt;
F[cnt++] = add;
} for (int i = ; i < n; i++){
for (int j = ; j < cnt; j++){
if (F[j].ok && ptof(P[i], F[j]) > eps){
dfs(i, j);
break;
}
}
}
int tmp = cnt;
cnt = ;
for (int i = ; i < tmp; i++){
if (F[i].ok){
F[cnt++] = F[i];
}
}
} //表面积
double area(){
double ret = 0.0;
for (int i = ; i < cnt; i++){
ret += area(P[F[i].a], P[F[i].b], P[F[i].c]);
}
return ret / 2.0;
} //体积
double volume(){
pt O(, , );
double ret = 0.0;
for (int i = ; i < cnt; i++) {
ret += volume(O, P[F[i].a], P[F[i].b], P[F[i].c]);
}
return fabs(ret / 6.0);
} pt BaryCenter() {
pt O(, , );
double ret = 0.0,sumvolume = 0.0, sumx = 0.0, sumy = 0.0, sumz = 0.0;
for(int i=;i<cnt;i++) {
double Vol = volume(O, P[F[i].a], P[F[i].b], P[F[i].c]);
sumvolume += Vol;
sumx += (P[F[i].a].x + P[F[i].b].x + P[F[i].c].x)*Vol;
sumy += (P[F[i].a].y + P[F[i].b].y + P[F[i].c].y)*Vol;
sumz += (P[F[i].a].z + P[F[i].b].z + P[F[i].c].z)*Vol;
}
return pt(sumx/sumvolume/, sumy/sumvolume/, sumz/sumvolume/);
} //表面三角形数
int facetCnt_tri(){
return cnt;
} //表面多边形数
int facetCnt(){
int ans = ;
for (int i = ; i < cnt; i++){
bool nb = ;
for (int j = ; j < i; j++){
if (same(i, j)){
nb = ;
break;
}
}
ans += nb;
}
return ans;
}
}; _3DCH hull,hull2; //内有大数组,不易放在函数内 int main()
{
while (scanf("%d", &hull.n)!=EOF){
for (int i = ; i < hull.n; i++)
scanf("%lf%lf%lf", &hull.P[i].x, &hull.P[i].y, &hull.P[i].z);
hull.construct();
pt bc1 = hull.BaryCenter();
scanf("%d",&hull2.n);
for (int i = ; i < hull2.n; i++)
scanf("%lf%lf%lf", &hull2.P[i].x, &hull2.P[i].y, &hull2.P[i].z);
hull2.construct();
pt bc2 = hull2.BaryCenter();
//printf("BARY1: %.2f %.2f %.2f\n",bc1.x,bc1.y,bc1.z);
//printf("BARY2: %.2f %.2f %.2f\n",bc2.x,bc2.y,bc2.z);
double dis1 = Mod, dis2 = Mod;
for (int i = ; i < hull.cnt; i++)
dis1 = min(dis1,fabs(hull.ptoplane(bc1,hull.F[i])));
for (int i = ; i < hull2.cnt; i++)
dis2 = min(dis2,fabs(hull2.ptoplane(bc2,hull2.F[i])));
printf("%.6f\n",dis1+dis2);
}
return ;
}
POJ 2225 / ZOJ 1438 / UVA 1438 Asteroids --三维凸包,求多面体重心的更多相关文章
- 三维凸包求其表面积(POJ3528)
Ultimate Weapon Time Limit: 2000MS Memory Limit: 131072K Total Submissions: 2074 Accepted: 989 D ...
- 三维凸包求凸包表面的个数(HDU3662)
3D Convex Hull Time Limit: 2000/1000 MS (Java/Others) Memory Limit: 32768/32768 K (Java/Others) T ...
- 三维凸包求重心到面的最短距离(HDU4273)
http://acm.hdu.edu.cn/showproblem.php?pid=4273 Rescue Time Limit: 2000/1000 MS (Java/Others) Memo ...
- 三维凸包求内部一点到表面的最近距离(HDU4266)
http://acm.hdu.edu.cn/showproblem.php?pid=4266 The Worm in the Apple Time Limit: 50000/20000 MS (Jav ...
- POJ 1903 & ZOJ 2469 & UVA 1326 Jurassic Remains (部分枚举)
题意:给定n个只有大写字母组成的字符串,选取尽可能多的字符串,使得这些字符串中每个字母的个数都是偶数.n<=24 思路:直接枚举每个字符串的选或不选,复杂度是O(2^n).其实还有更简便的方法. ...
- hdu 4071& poj 3873 & zoj 3386 & uva 12197 Trick or Treat 三分法
思路: 看到这个题目就发现所需最短时间也就是房子和相遇点的最远距离具有凹凸性,很容易就想到了三分法枚举. 找出所有房子的X坐标的最小最大值作为上下界. 代码如下: #include<stdio. ...
- zoj 1453 Surround the Trees(凸包求周长)
链接:http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=453 Time Limit: 2 Seconds Memory ...
- POJ 2251 Dungeon Master /UVA 532 Dungeon Master / ZOJ 1940 Dungeon Master(广度优先搜索)
POJ 2251 Dungeon Master /UVA 532 Dungeon Master / ZOJ 1940 Dungeon Master(广度优先搜索) Description You ar ...
- POJ 1511 Invitation Cards / UVA 721 Invitation Cards / SPOJ Invitation / UVAlive Invitation Cards / SCU 1132 Invitation Cards / ZOJ 2008 Invitation Cards / HDU 1535 (图论,最短路径)
POJ 1511 Invitation Cards / UVA 721 Invitation Cards / SPOJ Invitation / UVAlive Invitation Cards / ...
随机推荐
- WPF数据编辑的提交与撤销
当为一个集合(通常绑定在DataGrid或其它ItemsControl控件)添加或编辑一个项时,通常会弹出一个编辑界面编辑项的属性,编辑结束再提交,或者我们不想编辑数据了,此时选择取消,数据项的内容没 ...
- 解决EP拒绝访问注册表Global键的的问题
问题描述 打开EP站点时出现如下Error: Message: An unhandled error has occurred. To view details about this error, ...
- 让Visual Studio Code对jQuery支持智能提示!
本人新手,对代码各种不熟悉,记不准确,总是打错,造成各种失误!! 其实这个方法应该适合大部分前端开发工具!! 园里子有前人写了一篇文章对智能提示的实现!不过很多新手看不懂吧. http://www.c ...
- C标准头文件<stdlib.h>
是个大杂烩,里面声明了从动态内存分配到常用算法等各种函数和宏 #数据类型 **size_t** **wchar_t** **div_t**是一个结构体类型,也是div()返回的类型 **ldiv_t* ...
- 【工业串口和网络软件通讯平台(SuperIO)教程】二.架构和组成部分
1.1 架构结构图 1.1.1 层次示意图 1.1.2 模型对象示意图 1.2 IO管理器 IO管理器是对串口和网络通讯链路的管理.调度.针对串口和网络通讯链路的特点,在IO管 ...
- 学习zepto.js(对象方法)[2]
今天来说下zepto那一套dom操作方法, prepend,append,prependTo,appendTo,before,after,insertBefore,insertAfter; 按着从内到 ...
- 走进SVG
什么是SVG?也许现在很多人都听说过SVG的人比较多,但不一定了解什么是SVG:SVG(Scalable Vector Graphics 一大串看不懂的英文)可伸缩矢量图形,它是用XML格式来定义用于 ...
- iOS多图片下载
iOS多图片下载.在cell里面下载图片.做了缓存优化. (app.icon是图片地址) // 先从内存缓存中取出图片 UIImage *image = self.images[app.icon]; ...
- su到普通用户不能起图形 解决办法
环境介绍: 登录系统的时候采用的是root用户,然后su - oracle帐户后,然后执行startx命令启动图形界面之后就报如下的错误,根据提示是PAM起作用了.如下是错误信息:[ora ...
- ArcGIS 的 Oracle 数据库的要求
[ArcGIS必打补丁]ArcGIS 10.2.2 for Desktop连接Oracle(2014年10月发布)数据库崩溃的问题 http://blog.csdn.net/linghe301/art ...