uva1473 这题说的是 在空间中给了n个点 然后用体积最小的圆锥将这些点包含在内可以在表面上, 将这些点 映射到xoz平面上然后,然后枚举每个上凸包的边和每个点的极值进行判断求得最小的体积 我们会发现最小的体积 要不就紧贴一个点要不然就会贴住两个点

#include <iostream>
#include <cstdio>
#include <string.h>
#include <cmath>
#include <algorithm>
using namespace std;
const double INF =1.79769e+308;
const double eps = 0.000000000001;
int dcmp(double a)
{
if(fabs(a)<=eps) return ;
return a>?:-;
}
struct point {
double x,y;
point(double a=, double b=){
x=a; y=b;
}
point operator -(point A){
return point(x-A.x, y-A.y);
}
bool operator <(point A)const{
return dcmp(x-A.x)<||(dcmp(x-A.x)==&&dcmp(y-A.y)<=);
}
}P[],ch[];
int n;
double Cross(point A, point B)
{
return A.x*B.y-A.y*B.x;
}
int Conxtull(int &G)
{
sort(P,P+n);
int m=;
for(int i =; i<n ; ++i )
{
while(m>&&dcmp( Cross( ( ch[m-] - ch[m-] ), ( P[i] - ch[m-] ) ) )<=)m--;
ch[ m++ ] = P[i];
}
int k = m;
for(int i = n-; i>=; --i )
{
while( k<m&&dcmp( Cross( ch[m-]-ch[m-], P[i]-ch[m-] ) )<= ) m--;
ch[m++] = P[i] ;
}
if(n>)m--;
G=m;
return k-;
}
point getpoint(double k,point F)
{
point ans;
ans.x = F.x+(F.y/k);
ans.y = F.y+k*F.x;
return ans;
}
double Volun(double radio, double hight)
{
return acos(-)*radio*radio*hight/3.0;
}
double Volume,ansR,ansH;
void solve(double k,point T)
{
point e = getpoint(k,T);
double V =Volun(e.x,e.y);
if(dcmp(Volume-V)>){
ansR=e.x; ansH=e.y;
Volume=V;
}
}
int main()
{
freopen("data.in","r",stdin);
freopen("data.out","w",stdout);
while(scanf("%d",&n)==)
{
n++;
double Minx=0.0;
P[]=point(,);
for(int i = ; i<n; ++i)
{
double x,y,z;
scanf("%lf%lf%lf",&x,&y,&z);
P[i].x=sqrt(x*x+y*y);
P[i].y=z;
Minx = max(Minx,P[i].x);
}
int m;
int k =Conxtull(m);
ch[m]=ch[];
Volume=INF;
double K=INF;
int we;
for(int i=k; i<m; ++i )
{
if(i==m-||dcmp(ch[i].x-ch[i+].x)<=||dcmp(ch[i].y-ch[i+].y)>=)
{
we=i;
break;
}
double R =(ch[i+].y-ch[i].y)/(ch[i].x-ch[i+].x);
double t =ch[i].y*;
t/=ch[i].x;
int f1 =dcmp(t-R);
int f2=dcmp(t-K);
if(f1>=&&f2<=)
solve(t,ch[i]);
solve(R,ch[i]);
K=R;
}
double t = 2.0*ch[we].y/ch[we].x;
if(dcmp(t-K)<)
solve(t,ch[we]);
printf("%.3lf %.3lf\n",ansH,ansR);
} return ;
}

uva 12165 这题说的是  用梅涅劳斯 计算图中三角形的对应的比例列出一堆后 开始拆分那些边然后化简就会达到所要的公式

#include <iostream>
#include <string.h>
#include <cmath>
#include <cstdio>
using namespace std;
struct point{
double x,y;
point(double a=,double b=){
x=a; y =b;
}
point operator +(point A){
return point(x+A.x,y+A.y);
}
point operator -(point A){
return point(x-A.x,y-A.y);
}
point operator *(double A){
return point(x*A,y*A);
}
};
double Cross(point A,point B){
return A.x*B.y-A.y*B.x;
}
double Dot(point A,point B){
return A.x*B.x+A.y*B.y;
}
double Length(point A){
return sqrt(Dot(A,A));
}
int main()
{ double m1,m2,m3,m4,m5,m6;
point P,Q,R;
int cas;
scanf("%d",&cas);
for(int cc=; cc<=cas; ++cc){ scanf("%lf%lf%lf%lf%lf%lf",&P.x,&P.y,&Q.x,&Q.y,&R.x,&R.y);
scanf("%lf%lf%lf%lf%lf%lf",&m1,&m2,&m3,&m4,&m5,&m6);
double c =Length(P-Q),a =Length(R-Q), b =Length(P-R);
double m = m3*m5/(m6*(m3+m4));
double n = m4*m2/((m3+m4)*m1);
double BP = (c+m*c)/(n-m);
m = (m5*m1)/((m5+m6)*m2);
n = m6*m4/((m5+m6)*m3);
double CQ = (m*a+a)/(n-m);
m = m1*m3/((m1+m2)*m4);
n =m2*m6/((m1+m2)*m5);
double AR = (m*b+b)/(n-m);
point PR = (R-P)*(/Length(R-P));
point A = R +(PR*AR);
point QP = (P-Q)*(/Length(P-Q));
point B = P+(QP*BP);
point RQ = (Q-R)*(/Length(Q-R));
point C = Q+(RQ*CQ);
printf("%.8lf %.8lf %.8lf %.8lf %.8lf %.8lf\n",A.x,A.y,B.x,B.y,C.x,C.y);
} return ;
}

Geometry的更多相关文章

  1. CSharpGL(14)用geometry shader渲染模型的法线(normal)

    +BIT祝威+悄悄在此留下版了个权的信息说: CSharpGL(14)用geometry shader渲染模型的法线(normal) +BIT祝威+悄悄在此留下版了个权的信息说: 2016-08-13 ...

  2. the operation was attempted on an empty geometry Arcgis Project异常

    处理gis数据,投影变换时出现异常: the operation was attempted on an empty geometry 解决思路: arcgis的repair geometry方法:删 ...

  3. Topology and Geometry in OpenCascade-Adapters

    Topology and Geometry in OpenCascade-Adapters eryar@163.com 摘要Abstract:本文简要介绍了适配器模式(adapter pattern) ...

  4. HDU1086You can Solve a Geometry Problem too(判断线段相交)

    You can Solve a Geometry Problem too Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/3 ...

  5. <<Differential Geometry of Curves and Surfaces>>笔记

    <Differential Geometry of Curves and Surfaces> by Manfredo P. do Carmo real line Rinterval I== ...

  6. Geometry shader总结

    什么是Geometry Shader GS存在于vertext shader和固定功能vertex post-processing stage之间,它是可选的不是必要的.GS的输入是单个primiti ...

  7. Geometry Stage in Rendering pipeline (读书笔记2 --- Real-Time rendering)

    Geometry Stage一般包含下面几个阶段 1. Model & View Transform(模型和视图变换) --- 模型空间--> 世界空间 模型变换:每个模型经过模型变换来 ...

  8. WPF的二维绘图(二)——几何图形Geometry

    在WPF的DrawingContext对象中,提供了基本的绘制椭圆和矩形的API:DrawEllipse和DrawRectangle.但是,这些是远远不够用的,我们在日常应用中,更多的是使用DrawG ...

  9. Geometry关系高级操作

    一些高级的操作 几何形状Geometry缓冲(buffer) 线段的融合(linemerge)是将Geometry A中相互连接的线段进行连接 多边形化操作(polygonize)对Geometry ...

  10. java程序操作Geometry对象

    Geometry 空间地理对象,Oracle中存储Geometry对象的字段类型是 MDSYS.SDO_GEOMETRY,在数据库中构建Geometry对象的方法: v_pointarray MDSY ...

随机推荐

  1. 【CF815D】Karen and Cards 单调栈+扫描线

    [CF815D]Karen and Cards 题意:一张卡片有三个属性a,b,c,其上限分别为A,B,C,现在有n张卡片,定义一张卡片能打败另一张卡片当且仅当它的至少两项属性要严格大于另一张的对应属 ...

  2. [Log]ASP.NET之HttpModule拦截404异常

    Httpmodule代码: public class Error404Module : IHttpModule { public void Init(HttpApplication context) ...

  3. 使用find命令按条件查找多个文件并且拷贝至指定目录

    命令格式如下 find / \( -name "*.war" -o -name "*.jar" \) | xargs -i cp {} ${wardir} 当需 ...

  4. Linux umask限制导致php的mkdir 0777无效

    原因:mkdir权限受当前linux umask限制 解决方法: $oldmask = umask(0); mkdir("test", 0777); umask($oldmask) ...

  5. Python开发【笔记】:what?进程queue还能生产出线程!

    进程queue底层用线程传输数据 import threading import multiprocessing def main(): queue = multiprocessing.Queue() ...

  6. IP报文

      位字段的值设置为二进制的0100表示IP版本4(IPv4).设置为0110表示IP版本6(IPv6)   位,它表示32位字长的IP报头长度,设计报头长度的原因是数据包可选字段大小会发生变化.IP ...

  7. MySQL中死锁

    1 .死锁的概念 是指两个或两个以上的事务在执行过程中,因争夺资源而造成的一种互相等待的现象.若无外力作用,事务都将无法推进下去,解决死锁的最简单问题是不要有等待,任何的等待都转换为回滚,并且事务重新 ...

  8. express 默认模板引擎

    使用express -t ejs microblog创建出来的居然不是ejs项目,而是jade项目.现在的版本已经没有-t这个命令了,改为express -e microblog.运行完之后,根据提示 ...

  9. 【Python】【Web.py】python web py入门-5-请求处理(下)

    前面一篇,我们演示了如何获取GET和POST请求的参数信息,这篇我们介绍如何获取请求的头部信息,这个方法我们在前面一篇文章已经给出了.直接来看一个例子,首先,我们在hello.py文件新增一个方法,用 ...

  10. mysql 权限管理 针对某个库 某张表 授权 tables_priv表

    精确到表级别 针对db1的t3表 授予select权限 mysql> grant select on db1.t3 to 'mike'@'localhost'; Query OK, rows a ...